Re-register service providers

This commit is contained in:
Shift
2024-04-27 08:20:23 +00:00
parent f9d038146b
commit 099db99025
3 changed files with 8 additions and 24 deletions
+4 -1
View File
@@ -5,7 +5,10 @@ use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
return Application::configure(basePath: dirname(__DIR__))
->withProviders()
->withProviders([
\Laravel\Tinker\TinkerServiceProvider::class,
\Jrean\UserVerification\UserVerificationServiceProvider::class,
])
->withRouting(
web: __DIR__.'/../routes/web.php',
// api: __DIR__.'/../routes/api.php',
+4
View File
@@ -2,4 +2,8 @@
return [
App\Providers\AppServiceProvider::class,
App\Providers\HorizonServiceProvider::class,
App\Providers\TelescopeServiceProvider::class,
App\Providers\RouteServiceProvider::class,
App\Providers\UserServiceProvider::class,
];