2017-10-07 03:18:36 -07:00
|
|
|
<?php
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2021-06-10 13:18:00 -07:00
|
|
|
namespace Database\Seeders;
|
|
|
|
|
2017-10-07 03:18:36 -07:00
|
|
|
use App\Models\Department;
|
2023-03-15 18:31:08 -07:00
|
|
|
use App\Models\Location;
|
2021-06-10 13:15:52 -07:00
|
|
|
use Illuminate\Database\Seeder;
|
2017-10-07 03:18:36 -07:00
|
|
|
|
|
|
|
class DepartmentSeeder extends Seeder
|
|
|
|
{
|
|
|
|
public function run()
|
|
|
|
{
|
|
|
|
Department::truncate();
|
2023-03-15 18:31:08 -07:00
|
|
|
|
|
|
|
if (! Location::count()) {
|
|
|
|
$this->call(LocationSeeder::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
$locationIds = Location::all()->pluck('id');
|
|
|
|
|
|
|
|
Department::factory()->count(1)->hr()->create(['location_id' => $locationIds->random()]);
|
|
|
|
Department::factory()->count(1)->engineering()->create(['location_id' => $locationIds->random()]);
|
|
|
|
Department::factory()->count(1)->marketing()->create(['location_id' => $locationIds->random()]);
|
|
|
|
Department::factory()->count(1)->client()->create(['location_id' => $locationIds->random()]);
|
|
|
|
Department::factory()->count(1)->product()->create(['location_id' => $locationIds->random()]);
|
|
|
|
Department::factory()->count(1)->silly()->create(['location_id' => $locationIds->random()]);
|
2017-10-07 03:18:36 -07:00
|
|
|
}
|
|
|
|
}
|