mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
13 lines
227 B
PHP
13 lines
227 B
PHP
<?php
|
|
use Illuminate\Database\Seeder;
|
|
use App\Models\Consumable;
|
|
|
|
class ConsumableSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
Consumable::truncate();
|
|
factory(Consumable::class, 'consumable',25)->create();
|
|
}
|
|
}
|