Re-register service providers

This commit is contained in:
Shift
2025-07-10 18:54:02 +00:00
parent 9091d1d707
commit 8554861d0a
3 changed files with 4 additions and 15 deletions

View File

@@ -5,7 +5,9 @@ use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
return Application::configure(basePath: dirname(__DIR__))
->withProviders()
->withProviders([
\Collective\Html\HtmlServiceProvider::class,
])
->withRouting(
web: __DIR__.'/../routes/web.php',
// api: __DIR__.'/../routes/api.php',

View File

@@ -2,4 +2,5 @@
return [
App\Providers\AppServiceProvider::class,
App\Providers\RouteServiceProvider::class,
];