'Admin', 'email' => 'admin@skunklounge.com', 'password' => Hash::make('securepass123'), 'role' => 'admin', 'balance' => 1000.00, ]); // Other seeds (e.g., site settings, promos) as before \DB::table('site_settings')->insert([ ['key' => 'currency_symbol', 'value' => '$'], ['key' => 'default_balance', 'value' => '0.00'], ['key' => 'maintenance_mode', 'value' => 'false'], ]); \DB::table('promo_codes')->insert(['code' => 'START100', 'value' => 100.00]); } }