Seed licenses with categories

This commit is contained in:
Marcus Moore 2023-03-16 13:47:02 -07:00
parent 2f0f9586b1
commit 31630e3677
No known key found for this signature in database

View file

@ -2,6 +2,7 @@
namespace Database\Seeders;
use App\Models\Category;
use App\Models\License;
use App\Models\LicenseSeat;
use App\Models\Supplier;
@ -14,15 +15,33 @@ class LicenseSeeder extends Seeder
License::truncate();
LicenseSeat::truncate();
if (! Category::count()) {
$this->call(CategorySeeder::class);
}
$categoryIds = Category::all()->pluck('id');
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()]);
License::factory()->count(1)->photoshop()->create([
'category_id' => $categoryIds->random(),
'supplier_id' => $supplierIds->random(),
]);
License::factory()->count(1)->acrobat()->create([
'category_id' => $categoryIds->random(),
'supplier_id' => $supplierIds->random(),
]);
License::factory()->count(1)->indesign()->create([
'category_id' => $categoryIds->random(),
'supplier_id' => $supplierIds->random(),
]);
License::factory()->count(1)->office()->create([
'category_id' => $categoryIds->random(),
'supplier_id' => $supplierIds->random(),
]);
}
}