/home/techb158/ileadtechnology.com/SSM/app/Http/Requests/library
Edit: /home/techb158/ileadtechnology.com/SSM/app/Http/Requests/library/BookLogRequest.php (1057B)
'required|in:student,employee',
'date_of_issue' => 'required|date'
];
}
/**
* Translate fields with user friendly name.
*
* @return array
*/
public function attributes()
{
return [
'type' => trans('library.issue_to'),
'date_of_issue' => trans('library.date_of_issue')
];
}
/**
* Get the error messages for the defined validation rules.
*
* @return array
*/
public function messages()
{
return [
];
}
}