mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
22 lines
662 B
PHP
Executable file
22 lines
662 B
PHP
Executable file
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Statuslabel;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class StatuslabelSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
Statuslabel::truncate();
|
|
Statuslabel::factory()->rtd()->create(['name' => 'Ready to Deploy']);
|
|
Statuslabel::factory()->pending()->create(['name' => 'Pending']);
|
|
Statuslabel::factory()->archived()->create(['name' => 'Archived']);
|
|
Statuslabel::factory()->outForDiagnostics()->create();
|
|
Statuslabel::factory()->outForRepair()->create();
|
|
Statuslabel::factory()->broken()->create();
|
|
Statuslabel::factory()->lost()->create();
|
|
}
|
|
}
|