/home/techb158/ileadtechnology.com/SSM/app/Http/Requests/transport
Edit: /home/techb158/ileadtechnology.com/SSM/app/Http/Requests/transport/TransportRouteRequest.php (982B)
'required',
'transport_stoppages' => 'required|array|min:1'
];
}
/**
* Translate fields with user friendly name.
*
* @return array
*/
public function attributes()
{
return [
'name' => trans('transport.route_name')
];
}
/**
* Get the error messages for the defined validation rules.
*
* @return array
*/
public function messages()
{
return [
];
}
}