snipe-it/database/seeders/ConsumableSeeder.php

20 lines
492 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\Consumable;
use Illuminate\Database\Seeder;
2021-06-10 13:19:27 -07:00
use Illuminate\Support\Facades\DB;
2016-03-25 01:18:05 -07:00
class ConsumableSeeder extends Seeder
{
public function run()
{
Consumable::truncate();
2017-10-07 02:46:04 -07:00
DB::table('consumables_users')->truncate();
2021-06-10 13:17:44 -07:00
Consumable::factory()->count(1)->cardstock()->create(); // 1
Consumable::factory()->count(1)->paper()->create(); // 2
Consumable::factory()->count(1)->ink()->create(); // 3
}
2016-03-25 01:18:05 -07:00
}