/home/techb158/ileadtechnology.com/SSM/app/Http/Requests/student
Edit: /home/techb158/ileadtechnology.com/SSM/app/Http/Requests/student/RegistrationFeeRequest.php (1177B)
'required',
'payment_method_id' => 'required',
'date' => 'required|date'
];
}
/**
* Translate fields with user friendly name.
*
* @return array
*/
public function attributes()
{
return [
'account_id' => trans('finance.account'),
'payment_method_id' => trans('finance.payment_method'),
'date' => trans('finance.date_of_payment')
];
}
/**
* Get the error messages for the defined validation rules.
*
* @return array
*/
public function messages()
{
return [
];
}
}