mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Company;
|
|
use App\Models\Component;
|
|
use App\Models\Location;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class ComponentSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
Component::truncate();
|
|
DB::table('components_assets')->truncate();
|
|
|
|
if (! Company::count()) {
|
|
$this->call(CompanySeeder::class);
|
|
}
|
|
|
|
$companyIds = Company::all()->pluck('id');
|
|
|
|
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(),
|
|
]);
|
|
}
|
|
}
|