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-16 13:47:02 -07:00
|
|
|
use App\Models\Category;
|
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;
|
2023-03-20 11:19:34 -07:00
|
|
|
use App\Models\User;
|
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
|
|
|
|
2023-03-16 13:47:02 -07:00
|
|
|
if (! Category::count()) {
|
|
|
|
$this->call(CategorySeeder::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
$categoryIds = Category::all()->pluck('id');
|
|
|
|
|
2023-03-16 12:41:34 -07:00
|
|
|
if (! Supplier::count()) {
|
|
|
|
$this->call(SupplierSeeder::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
$supplierIds = Supplier::all()->pluck('id');
|
|
|
|
|
2023-03-20 11:19:34 -07:00
|
|
|
$admin = User::where('permissions->superuser', '1')->first() ?? User::factory()->firstAdmin()->create();
|
|
|
|
|
2023-03-16 13:47:02 -07:00
|
|
|
License::factory()->count(1)->photoshop()->create([
|
|
|
|
'category_id' => $categoryIds->random(),
|
|
|
|
'supplier_id' => $supplierIds->random(),
|
2023-03-20 11:19:34 -07:00
|
|
|
'user_id' => $admin->id,
|
2023-03-16 13:47:02 -07:00
|
|
|
]);
|
2023-03-20 11:19:34 -07:00
|
|
|
|
2023-03-16 13:47:02 -07:00
|
|
|
License::factory()->count(1)->acrobat()->create([
|
|
|
|
'category_id' => $categoryIds->random(),
|
|
|
|
'supplier_id' => $supplierIds->random(),
|
2023-03-20 11:19:34 -07:00
|
|
|
'user_id' => $admin->id,
|
2023-03-16 13:47:02 -07:00
|
|
|
]);
|
2023-03-20 11:19:34 -07:00
|
|
|
|
2023-03-16 13:47:02 -07:00
|
|
|
License::factory()->count(1)->indesign()->create([
|
|
|
|
'category_id' => $categoryIds->random(),
|
|
|
|
'supplier_id' => $supplierIds->random(),
|
2023-03-20 11:19:34 -07:00
|
|
|
'user_id' => $admin->id,
|
2023-03-16 13:47:02 -07:00
|
|
|
]);
|
2023-03-20 11:19:34 -07:00
|
|
|
|
2023-03-16 13:47:02 -07:00
|
|
|
License::factory()->count(1)->office()->create([
|
|
|
|
'category_id' => $categoryIds->random(),
|
|
|
|
'supplier_id' => $supplierIds->random(),
|
2023-03-20 11:19:34 -07:00
|
|
|
'user_id' => $admin->id,
|
2023-03-16 13:47:02 -07:00
|
|
|
]);
|
2017-06-12 17:39:03 -07:00
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|