35 lines
854 B
PHP
Executable File
35 lines
854 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Actions\Fortify;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Facades\Validator;
|
|
use Illuminate\Validation\Rule;
|
|
use Laravel\Fortify\Contracts\CreatesNewUsers;
|
|
|
|
use Illuminate\Auth\Events\Registered;
|
|
|
|
class CreateNewUser implements CreatesNewUsers
|
|
{
|
|
use PasswordValidationRules;
|
|
|
|
/**
|
|
* Validate and create a newly registered user.
|
|
*
|
|
* @param array<string, string> $input
|
|
*/
|
|
public function create(array $input): User
|
|
{
|
|
|
|
return User::create([
|
|
'user_name' => $input['user_name'],
|
|
'email' => $input['email'],
|
|
'password' => $input['password'],
|
|
'type_users' => $input['type_users'],
|
|
'user_phone' => $input['user_phone'],
|
|
'user_nif' => $input['user_nif'],
|
|
]);
|
|
}
|
|
}
|