source: app/Http/Requests/Dashboard/NewUserRequest.php@ 0c07a90

Last change on this file since 0c07a90 was d25ba66, checked in by Özkan İliyaz <iliyaz_96@…>, 4 years ago

ADD post confirmation with multiple phases, notification after succesfully password creation

  • Property mode set to 100644
File size: 1.5 KB
RevLine 
[0924b6c]1<?php
2
3namespace App\Http\Requests\Dashboard;
4
5use Illuminate\Foundation\Http\FormRequest;
6use Propaganistas\LaravelPhone\PhoneNumber;
7
8class NewUserRequest extends FormRequest
9{
10 /**
11 * Determine if the user is authorized to make this request.
12 *
13 * @return bool
14 */
15 public function authorize()
16 {
17 return true;
18 }
19
20 /**
21 * Get the validation rules that apply to the request.
22 *
23 * @return array
24 */
25 public function rules()
26 {
27 return [
28 "name" => "required|alpha|min:2|max:255",
29 "surname" => "required|alpha|min:2|max:255",
30 "mobile_number_country" => "required_with:mobile_number|string|size:2",
31 "mobile_number" => "phone:mobile_number_country|unique:users,mobile_number",
32 "email" => "required|string|email|max:255|unique:users",
33 "username" => "required|alpha_dash|min:8|unique:users,username",
34 "userRole" => "required|exists:roles,id"
35 ];
36 }
37
38 protected function getValidatorInstance()
39 {
[d25ba66]40 try {
41 if($this->request->has("mobile_number") && $this->request->has("mobile_number_country")) {
42 $this->request->set("mobile_number", PhoneNumber::make(
43 $this->request->get("mobile_number"),
44 $this->request->get("mobile_number_country")
45 )->formatInternational());
46 }
47 } catch (\Exception $e) {}
[0924b6c]48
49 return parent::getValidatorInstance();
50 }
51}
Note: See TracBrowser for help on using the repository browser.