withRouting( web: __DIR__ . '/../routes/web.php', api: __DIR__ . '/../routes/api.php', commands: __DIR__ . '/../routes/console.php', health: '/up', ) ->withMiddleware(function (Middleware $middleware) { // $middleware->statefulApi(); $middleware->append([SetUserLanguage::class, PerformanceMonitor::class]); $middleware->alias([ 'permission' => CheckPermission::class, 'ability' => CheckForAnyAbility::class, ]); }) ->withSchedule(function (Schedule $schedule) { $schedule->call(new DeleteExpiredTokens)->everyMinute(); }) ->withExceptions(function (Exceptions $exceptions) { // }) ->create();