add necessary package and setup

This commit is contained in:
Nyan Lin Paing
2026-08-04 22:23:54 +07:00
parent 09c5603ff8
commit cfa5aed15c
102 changed files with 5076 additions and 15 deletions
+1
View File
@@ -7,6 +7,7 @@ use Illuminate\Foundation\Configuration\Middleware;
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
web: __DIR__.'/../routes/web.php',
api: __DIR__.'/../routes/api.php',
commands: __DIR__.'/../routes/console.php',
health: '/up',
)
+2
View File
@@ -1,7 +1,9 @@
<?php
use App\Providers\AppServiceProvider;
use App\Providers\Filament\AdminPanelProvider;
return [
AppServiceProvider::class,
AdminPanelProvider::class,
];