mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
16 lines
445 B
PHP
16 lines
445 B
PHP
<?php
|
|
use Illuminate\Database\Seeder;
|
|
use App\Models\Consumable;
|
|
|
|
class ConsumableSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
Consumable::truncate();
|
|
DB::table('consumables_users')->truncate();
|
|
factory(Consumable::class, 1)->states('cardstock')->create(); // 1
|
|
factory(Consumable::class, 1)->states('paper')->create(); // 2
|
|
factory(Consumable::class, 1)->states('ink')->create(); // 3
|
|
}
|
|
}
|