where('email', 'admin@example.com')->exists()) { \Illuminate\Support\Facades\DB::table('users')->insert([ 'name' => 'Admin User', 'email' => 'admin@example.com', 'password' => \Illuminate\Support\Facades\Hash::make('password'), 'role' => 'admin', 'created_at' => now(), 'updated_at' => now(), ]); } // Call Seeders $this->call([ SkillSeeder::class, AdminSeeder::class, NationalitySeeder::class, ]); } }