2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2021-06-10 13:18:00 -07:00
|
|
|
namespace Database\Seeders;
|
|
|
|
|
2023-03-15 14:12:34 -07:00
|
|
|
use App\Models\Company;
|
2016-03-25 01:18:05 -07:00
|
|
|
use App\Models\Component;
|
2023-03-15 18:31:08 -07:00
|
|
|
use App\Models\Location;
|
2021-06-10 13:15:52 -07:00
|
|
|
use Illuminate\Database\Seeder;
|
2021-06-10 13:19:27 -07:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
class ComponentSeeder extends Seeder
|
|
|
|
{
|
2017-06-12 17:39:03 -07:00
|
|
|
public function run()
|
|
|
|
{
|
|
|
|
Component::truncate();
|
|
|
|
DB::table('components_assets')->truncate();
|
2023-03-15 14:12:34 -07:00
|
|
|
|
|
|
|
if (! Company::count()) {
|
|
|
|
$this->call(CompanySeeder::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
$companyIds = Company::all()->pluck('id');
|
|
|
|
|
2023-03-15 18:31:08 -07:00
|
|
|
if (! Location::count()) {
|
|
|
|
$this->call(LocationSeeder::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
$locationIds = Location::all()->pluck('id');
|
|
|
|
|
|
|
|
Component::factory()->ramCrucial4()->create([
|
|
|
|
'company_id' => $companyIds->random(),
|
|
|
|
'location_id' => $locationIds->random(),
|
|
|
|
]);
|
|
|
|
Component::factory()->ramCrucial8()->create([
|
|
|
|
'company_id' => $companyIds->random(),
|
|
|
|
'location_id' => $locationIds->random(),
|
|
|
|
]);
|
|
|
|
Component::factory()->ssdCrucial120()->create([
|
|
|
|
'company_id' => $companyIds->random(),
|
|
|
|
'location_id' => $locationIds->random(),
|
|
|
|
]);
|
|
|
|
Component::factory()->ssdCrucial240()->create([
|
|
|
|
'company_id' => $companyIds->random(),
|
|
|
|
'location_id' => $locationIds->random(),
|
|
|
|
]);
|
2017-06-12 17:39:03 -07:00
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|