Add seeders and factories for all models

This commit is contained in:
2026-04-29 20:38:05 -04:00
parent 00ff08e3a6
commit a8fd03f256
14 changed files with 351 additions and 9 deletions
@@ -0,0 +1,14 @@
<?php
use Illuminate\Database\Seeder;
use App\Models\PaymentMethods;
class PaymentMethodsTableSeeder extends Seeder
{
public function run()
{
PaymentMethods::create(['pm_name' => 'Cash']);
PaymentMethods::create(['pm_name' => 'Check']);
PaymentMethods::create(['pm_name' => 'Credit Card']);
}
}