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