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;
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
use App\Models\License;
|
|
|
|
use App\Models\LicenseSeat;
|
2023-03-16 12:41:34 -07:00
|
|
|
use App\Models\Supplier;
|
2021-06-10 13:15:52 -07:00
|
|
|
use Illuminate\Database\Seeder;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
class LicenseSeeder extends Seeder
|
|
|
|
{
|
2017-06-12 17:39:03 -07:00
|
|
|
public function run()
|
|
|
|
{
|
|
|
|
License::truncate();
|
|
|
|
LicenseSeat::truncate();
|
2023-03-16 12:41:34 -07:00
|
|
|
|
|
|
|
if (! Supplier::count()) {
|
|
|
|
$this->call(SupplierSeeder::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
$supplierIds = Supplier::all()->pluck('id');
|
|
|
|
|
|
|
|
License::factory()->count(1)->photoshop()->create(['supplier_id' => $supplierIds->random()]);
|
|
|
|
License::factory()->count(1)->acrobat()->create(['supplier_id' => $supplierIds->random()]);
|
|
|
|
License::factory()->count(1)->indesign()->create(['supplier_id' => $supplierIds->random()]);
|
|
|
|
License::factory()->count(1)->office()->create(['supplier_id' => $supplierIds->random()]);
|
2017-06-12 17:39:03 -07:00
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|