snipe-it/database/seeders/LicenseSeeder.php

21 lines
498 B
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
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;
use Illuminate\Database\Seeder;
2016-03-25 01:18:05 -07:00
class LicenseSeeder extends Seeder
{
public function run()
{
License::truncate();
LicenseSeat::truncate();
2021-06-10 13:17:44 -07:00
License::factory()->count(1)->photoshop()->create();
License::factory()->count(1)->acrobat()->create();
License::factory()->count(1)->indesign()->create();
License::factory()->count(1)->office()->create();
}
2016-03-25 01:18:05 -07:00
}