Domain\Classroom\Http\Requests\AssociateStudentRequest::rules PHP Method

rules() public method

Get the validation rules that apply to the request.
public rules ( ) : array
return array
    public function rules()
    {
        return ['students' => 'array', 'students.*.id' => 'integer|exists:students,id'];
    }
AssociateStudentRequest