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