Files
ladill-qr-plus/bootstrap/app.php
T
isaaccladandCursor 8c3e9d3c26
Deploy Ladill QR Plus / deploy (push) Successful in 42s
Add team, developers, PDF type, and QR rendering dependency.
Enables account collaboration, API tokens, hosted PDF codes, and fixes QR detail 500s by declaring chillerlan/php-qrcode.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-07 06:16:13 +00:00

22 lines
662 B
PHP

<?php
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',
api: __DIR__.'/../routes/api.php',
commands: __DIR__.'/../routes/console.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware): void {
$middleware->web(append: [
\App\Http\Middleware\SetActingAccount::class,
]);
})
->withExceptions(function (Exceptions $exceptions): void {
//
})->create();