Created
May 26, 2018 16:56
-
-
Save kamerk22/c6d293f2695dab9fa807550b1f509ef6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Requests; | |
class UserStoreRequest extends BaseFormRequest | |
{ | |
/** | |
* Determine if the user is authorized to make this request. | |
* | |
* @return bool | |
*/ | |
public function authorize() | |
{ | |
return true; | |
} | |
/** | |
* Get the validation rules that apply to the request. | |
* | |
* @return array | |
*/ | |
public function rules() | |
{ | |
return [ | |
'email' => 'required|email|unique:users', | |
'name' => 'required|string|max:50', | |
'password' => 'required' | |
]; | |
} | |
public function messages() | |
{ | |
return [ | |
'email.required' => 'Email is required!', | |
'name.required' => 'Name is required!', | |
'password.required' => 'Password is required!' | |
]; | |
} | |
/** | |
* Filters to be applied to the input. | |
* | |
* @return array | |
*/ | |
public function filters() | |
{ | |
return [ | |
'email' => 'trim|lowercase', | |
'name' => 'trim|capitalize|escape' | |
]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment