diff --git a/app/Actions/Fortify/CreateNewUser.php b/app/Actions/Fortify/CreateNewUser.php index f39ca9a..19d75aa 100644 --- a/app/Actions/Fortify/CreateNewUser.php +++ b/app/Actions/Fortify/CreateNewUser.php @@ -6,6 +6,7 @@ use App\Models\User; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Validator; use Illuminate\Validation\Rule; +use Illuminate\Auth\Events\Registered; use Laravel\Fortify\Contracts\CreatesNewUsers; class CreateNewUser implements CreatesNewUsers @@ -40,5 +41,9 @@ class CreateNewUser implements CreatesNewUsers 'phone' => $input['phone'] ?? null, 'type' => 'user', // default ]); + + event(new Registered($user)); + + return $user; } } diff --git a/app/Mail/VerifyEmail.php b/app/Mail/VerifyEmail.php new file mode 100644 index 0000000..875c5b1 --- /dev/null +++ b/app/Mail/VerifyEmail.php @@ -0,0 +1,53 @@ + + */ + public function attachments(): array + { + return []; + } +} diff --git a/app/Models/User.php b/app/Models/User.php index 0ff4782..eee18f3 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -2,15 +2,16 @@ namespace App\Models; -// use Illuminate\Contracts\Auth\MustVerifyEmail; +use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; +use Laravel\Fortify\TwoFactorAuthenticatable; -class User extends Authenticatable +class User extends Authenticatable implements MustVerifyEmail { /** @use HasFactory<\Database\Factories\UserFactory> */ - use HasFactory, Notifiable; + use HasFactory, Notifiable, TwoFactorAuthenticatable; /** * The attributes that are mass assignable. diff --git a/app/Providers/FortifyServiceProvider.php b/app/Providers/FortifyServiceProvider.php index acbfbf3..e4d5baf 100644 --- a/app/Providers/FortifyServiceProvider.php +++ b/app/Providers/FortifyServiceProvider.php @@ -35,8 +35,6 @@ class FortifyServiceProvider extends ServiceProvider return view('auth.register'); }); - - Fortify::createUsersUsing(CreateNewUser::class); Fortify::updateUserProfileInformationUsing(UpdateUserProfileInformation::class); Fortify::updateUserPasswordsUsing(UpdateUserPassword::class); diff --git a/config/fortify.php b/config/fortify.php index 04a9d52..de0b96a 100644 --- a/config/fortify.php +++ b/config/fortify.php @@ -146,7 +146,7 @@ return [ 'features' => [ Features::registration(), Features::resetPasswords(), - // Features::emailVerification(), + Features::emailVerification(), Features::updateProfileInformation(), Features::updatePasswords(), Features::twoFactorAuthentication([ diff --git a/database/migrations/0001_01_01_000000_create_users_table.php b/database/migrations/0001_01_01_000000_create_users_table.php index 05fb5d9..5ab624e 100644 --- a/database/migrations/0001_01_01_000000_create_users_table.php +++ b/database/migrations/0001_01_01_000000_create_users_table.php @@ -16,6 +16,7 @@ return new class extends Migration $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); + $table->string('email_verification_token')->nullable(); $table->string('password'); $table->rememberToken(); $table->timestamps(); diff --git a/resources/views/admin/home.blade.php b/resources/views/admin/home.blade.php index a738ed0..e6eeded 100644 --- a/resources/views/admin/home.blade.php +++ b/resources/views/admin/home.blade.php @@ -1 +1,5 @@ -This is Admin Home +@extends('admin.layouts.master') + +@section('content') + this is Admin panel +@endsection diff --git a/resources/views/admin/layouts/account-menu.blade.php b/resources/views/admin/layouts/account-menu.blade.php new file mode 100644 index 0000000..582d5ff --- /dev/null +++ b/resources/views/admin/layouts/account-menu.blade.php @@ -0,0 +1,35 @@ +