/home/techb158/ileadtechnology.com/SSM/app/Http/Requests/library
Edit: /home/techb158/ileadtechnology.com/SSM/app/Http/Requests/library/BookPostDetailRequest.php (1058B)
'required|integer|min:1',
'remarks' => 'required|min:20'
];
}
/**
* Translate fields with user friendly name.
*
* @return array
*/
public function attributes()
{
return [
'number' => trans('library.book_number'),
'remarks' => trans('library.book_post_detail_remarks')
];
}
/**
* Get the error messages for the defined validation rules.
*
* @return array
*/
public function messages()
{
return [
];
}
}