You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.4 KiB
PHP

<?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;
class CreateNewUser implements CreatesNewUsers
{
use PasswordValidationRules;
/**
* Validate and create a newly registered user.
*
* @param array<string, string> $input
*/
public function create(array $input): User
{
Validator::make($input, [
// required
'username' => ['required', 'string', 'max:255', 'unique:users'],
'email' => ['required', 'string', 'email:rfc,dns', 'max:255', 'unique:users'],
'password' => $this->passwordRules(),
// -----
'first_name' => ['nullable', 'string', 'max:255'],
'last_name' => ['nullable', 'string', 'max:255'],
'phone' => ['nullable', 'string', 'max:20'],
])->validate();
return User::create([
'username' => $input['username'],
'email' => $input['email'],
'password' => Hash::make($input['password']),
// required
'first_name' => $input['first_name'] ?? null,
'last_name' => $input['last_name'] ?? null,
'phone' => $input['phone'] ?? null,
'type' => 'user', // default
]);
}
}