/home/techb158/ileadtechnology.com/SSM/app/Http/Requests/communication
Edit: /home/techb158/ileadtechnology.com/SSM/app/Http/Requests/communication/SMSRequest.php (1002B)
'required',
'sms' => 'required|max:320'
];
}
/**
* Translate fields with user friendly name.
*
* @return array
*/
public function attributes()
{
return [
'subject' => trans('communication.subject'),
'sms' => trans('communication.sms')
];
}
/**
* Get the error messages for the defined validation rules.
*
* @return array
*/
public function messages()
{
return [];
}
}