Created
July 19, 2019 17:14
-
-
Save tiagoandrepro/30e1680468683c0d739a1a499f6f469e 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; | |
use Illuminate\Foundation\Http\FormRequest; | |
class UserRequest extends FormRequest | |
{ | |
/** | |
* 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 [ | |
'name' => 'required|string|max:191', | |
'birth' => 'required|date', | |
'gender' => 'required', | |
'mobile' => 'required|string|max:11|min:11', | |
'phone' => 'required|string|max:10|min:10', | |
'email' => 'required|string|email|unique:users', | |
'password' => 'required|string|min:8', | |
]; | |
} | |
protected function prepareForValidation() | |
{ | |
$input = array_map('trim', $this->all()); | |
/*$this->replace([ | |
'mobile' => str_replace(['(', ')', '-'], '', $this->input('mobile')), | |
'phone' => str_replace(['(', ')', '-'], '', $this->input('phone')), | |
]);*/ | |
$input['mobile'] = str_replace(['(', ')', '-'], '', $this->input('mobile')); | |
$input['phone'] = str_replace(['(', ')', '-'], '', $this->input('phone')); | |
$this->replace($input); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment