35 lines
913 B
PHP
35 lines
913 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Hash;
|
|
|
|
class MasterDataSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds for master/static data only.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
// 1. Create Admin User (if not already exists)
|
|
if (!DB::table('users')->where('email', 'admin@example.com')->exists()) {
|
|
DB::table('users')->insert([
|
|
'name' => 'Admin User',
|
|
'email' => 'admin@example.com',
|
|
'password' => Hash::make('password'),
|
|
'role' => 'admin',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]);
|
|
}
|
|
|
|
// 2. Run static reference seeders
|
|
$this->call([
|
|
WorkerCategorySeeder::class,
|
|
SkillSeeder::class,
|
|
]);
|
|
}
|
|
}
|