call([ PoliciesSeeder::class, ]); User::query()->updateOrCreate( ['email' => 'test@example.com'], [ 'name' => 'Test User', 'email_verified_at' => now(), 'password' => Hash::make('password'), ], ); } }