2026-05-13 10:37:34 +03:00

40 lines
1.4 KiB
PHP

<?php
namespace Database\Seeders;
use App\Models\User;
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*/
public function run(): void
{
// User::factory(10)->create();
$this->call(AdminAccessSeeder::class);
$this->call(ProductCategorySeeder::class);
$this->call(ProductSeeder::class);
$this->call(EmployeeSeeder::class);
$this->call(ThanatopractitionerSeeder::class);
$this->call(ClientSeeder::class);
$this->call(ContactSeeder::class);
$this->call(DeceasedSeeder::class);
$this->call(InterventionSeeder::class);
// ── Financial data ────────────────────────────────────────────────────
$this->call(QuoteSeeder::class);
$this->call(InvoiceSeeder::class);
$this->call(AvoirSeeder::class);
// ── Stock data ────────────────────────────────────────────────────────
$this->call(WarehouseSeeder::class);
$this->call(StockItemSeeder::class);
$this->call(StockMoveSeeder::class);
}
}