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