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