diff --git a/laravel_app/app/Models/User.php b/laravel_app/app/Models/User.php index 7f186c3..0611f75 100644 --- a/laravel_app/app/Models/User.php +++ b/laravel_app/app/Models/User.php @@ -17,6 +17,7 @@ class User extends Authenticatable use HasProfilePhoto; use Notifiable; use TwoFactorAuthenticatable; + use Notifiable; /** * The attributes that are mass assignable. diff --git a/laravel_app/database/migrations/2024_01_30_124700_create_password_reset_table.php b/laravel_app/database/migrations/2024_01_30_124700_create_password_reset_table.php index 4424ec8..a6abe20 100644 --- a/laravel_app/database/migrations/2024_01_30_124700_create_password_reset_table.php +++ b/laravel_app/database/migrations/2024_01_30_124700_create_password_reset_table.php @@ -11,7 +11,7 @@ */ public function up(): void { - Schema::create('password_resets', function (Blueprint $table) { + Schema::create('password_reset_tokens', function (Blueprint $table) { $table->string('email')->index(); $table->string('token')->index(); $table->timestamp('created_at');