2018-10-04 19:10:43 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-10-04 19:10:43 +02:00
|
|
|
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
2020-09-06 11:38:10 +02:00
|
|
|
use App\Models\User;
|
|
|
|
use Illuminate\Foundation\Auth\RegistersUsers;
|
2018-10-04 19:10:43 +02:00
|
|
|
use Illuminate\Support\Facades\Hash;
|
|
|
|
use Illuminate\Support\Facades\Validator;
|
|
|
|
|
|
|
|
class RegisterController extends Controller
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Register Controller
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This controller handles the registration of new users as well as their
|
|
|
|
| validation and creation. By default this controller uses a trait to
|
|
|
|
| provide this functionality without requiring any additional code.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
use RegistersUsers;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Where to redirect users after registration.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2018-10-17 14:26:27 +02:00
|
|
|
protected $redirectTo = '/dashboard';
|
2018-10-04 19:10:43 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new controller instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->middleware('guest');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a validator for an incoming registration request.
|
|
|
|
*
|
2018-10-15 07:00:48 +02:00
|
|
|
* @param array $data
|
2018-10-04 19:10:43 +02:00
|
|
|
* @return \Illuminate\Contracts\Validation\Validator
|
|
|
|
*/
|
|
|
|
protected function validator(array $data)
|
|
|
|
{
|
|
|
|
return Validator::make($data, [
|
2018-10-15 07:00:48 +02:00
|
|
|
'first_name' => 'required|string|max:255',
|
|
|
|
'email' => 'required|string|email|max:255|unique:users',
|
2018-10-04 19:10:43 +02:00
|
|
|
'password' => 'required|string|min:6|confirmed',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new user instance after a valid registration.
|
|
|
|
*
|
2018-10-15 07:00:48 +02:00
|
|
|
* @param array $data
|
2018-10-04 19:10:43 +02:00
|
|
|
* @return \App\User
|
|
|
|
*/
|
|
|
|
protected function create(array $data)
|
|
|
|
{
|
|
|
|
return User::create([
|
2018-10-15 07:00:48 +02:00
|
|
|
'first_name' => $data['first_name'],
|
|
|
|
'email' => $data['email'],
|
2018-10-04 19:10:43 +02:00
|
|
|
'password' => Hash::make($data['password']),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|