/home/techb158/ileadtechnology.com/SSM/app/Http/Requests/employee
Edit: /home/techb158/ileadtechnology.com/SSM/app/Http/Requests/employee/EmployeeDocumentRequest.php (1096B)
'required',
'employee_document_type_id' => 'required'
];
}
/**
* Translate fields with user friendly name.
*
* @return array
*/
public function attributes()
{
return [
'title' => trans('employee.document_title'),
'employee_document_type_id' => trans('employee.document_type')
];
}
/**
* Get the error messages for the defined validation rules.
*
* @return array
*/
public function messages()
{
return [
];
}
}