/home/techb158/ileadtechnology.com/SSM/app/Http/Requests/student
Edit: /home/techb158/ileadtechnology.com/SSM/app/Http/Requests/student/PromotionRequest.php (1067B)
'required',
'promotion_remarks' => 'required|min:20'
];
}
/**
* Translate fields with user friendly name.
*
* @return array
*/
public function attributes()
{
return [
'next_session_batch_id' => trans('academic.batch'),
'promotion_remarks' => trans('student.promotion_remarks')
];
}
/**
* Get the error messages for the defined validation rules.
*
* @return array
*/
public function messages()
{
return [
];
}
}