- Added database migrations for tickets, statuses, roles, users, and related associations. - Introduced models and enums for ticket status, permissions, and notifications. - Implemented `TicketService` for ticket management and notification handling. - Created Livewire form and UI for raising tickets with file attachments and routing options. - Added tests covering ticket creation, validation, notifications, and file uploads.
28 lines
717 B
PHP
28 lines
717 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
|
|
final class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
$this->call(ConnectionStatusSeeder::class);
|
|
$this->call(ConnectionProtocolSeeder::class);
|
|
$this->call(ConnectionProviderSeeder::class);
|
|
$this->call(PermissionSeeder::class);
|
|
$this->call(DefaultRoleWithPermissionSeeder::class);
|
|
$this->call(ExampleUserWithRoleSeeder::class);
|
|
$this->call(TicketStatusSeeder::class);
|
|
$this->call(MockDataSeeder::class);
|
|
}
|
|
}
|