/home/techb158/ileadtechnology.com/SSM/app/Http/Requests/exam
Edit: /home/techb158/ileadtechnology.com/SSM/app/Http/Requests/exam/RecordRequest.php (1097B)
'required',
'batch_id' => 'required',
'subject_id' => 'required'
];
}
/**
* Translate fields with user friendly name.
*
* @return array
*/
public function attributes()
{
return [
'exam_id' => trans('exam.exam'),
'batch_id' => trans('academic.batch'),
'subject_id' => trans('academic.subject')
];
}
/**
* Get the error messages for the defined validation rules.
*
* @return array
*/
public function messages()
{
return [
];
}
}