Files
dyncoll-dev/backend/database/seeders/DatabaseSeeder.php
Giuseppe Naponiello 271acacb1d
Some checks failed
docs / build (push) Has been cancelled
docs / deploy (push) Has been cancelled
license: built full stack, test and documentation
2026-07-03 12:47:47 +02:00

27 lines
603 B
PHP

<?php
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
use WithoutModelEvents;
/**
* Seed dell'applicazione. L'ordine conta: i ruoli prima dell'utente di
* sistema (che richiede il ruolo Admin).
*/
public function run(): void
{
$this->call([
UserRoleSeeder::class,
SystemUserSeeder::class,
InstitutionCategorySeeder::class,
UserPositionSeeder::class,
LicenseSeeder::class,
]);
}
}