2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2021-06-10 13:18:00 -07:00
|
|
|
namespace Database\Seeders;
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
use App\Models\Consumable;
|
2023-03-20 11:19:34 -07:00
|
|
|
use App\Models\User;
|
2021-06-10 13:15:52 -07:00
|
|
|
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
|
|
|
|
{
|
2017-06-12 17:39:03 -07:00
|
|
|
public function run()
|
|
|
|
{
|
|
|
|
Consumable::truncate();
|
2017-10-07 02:46:04 -07:00
|
|
|
DB::table('consumables_users')->truncate();
|
2023-03-20 11:19:34 -07:00
|
|
|
|
|
|
|
$admin = User::where('permissions->superuser', '1')->first() ?? User::factory()->firstAdmin()->create();
|
|
|
|
|
2023-03-20 11:42:15 -07:00
|
|
|
Consumable::factory()->count(1)->cardstock()->create(['user_id' => $admin->id]);
|
|
|
|
Consumable::factory()->count(1)->paper()->create(['user_id' => $admin->id]);
|
|
|
|
Consumable::factory()->count(1)->ink()->create(['user_id' => $admin->id]);
|
2017-06-12 17:39:03 -07:00
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|