Initial commit

This commit is contained in:
2025-08-01 22:04:00 +02:00
commit d1f466d1d4
155 changed files with 15995 additions and 0 deletions

21
bootstrap/app.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
use App\Http\Middleware\EnableScopeMiddleware;
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
web: __DIR__.'/../routes/web.php',
commands: __DIR__.'/../routes/console.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware): void {
$middleware->append(EnableScopeMiddleware::class);
})
->withExceptions(function (Exceptions $exceptions): void {
//
})->create();

2
bootstrap/cache/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
*
!.gitignore

8
bootstrap/providers.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
declare(strict_types=1);
return [
App\Providers\Filament\AdminPanelProvider::class,
App\Providers\AppServiceProvider::class,
];