Re-register these providers

This commit is contained in:
Lance Pioch 2024-03-20 03:02:24 -04:00
parent add838d42f
commit cd9044753f

View File

@ -53,6 +53,12 @@ return Application::configure(basePath: dirname(__DIR__))
'recaptcha' => \App\Http\Middleware\VerifyReCaptcha::class,
]);
})
->withSingletons([
\Illuminate\Contracts\Console\Kernel::class => \App\Console\Kernel::class,
\Illuminate\Contracts\Debug\ExceptionHandler::class => \App\Exceptions\Handler::class,
])
->withExceptions(function (Exceptions $exceptions) {
//
})->create();
})
->create();