AD
Почему я попадаю в
RouteServiceProvider::boot :
protected $namespace = 'App\\Http\\Controllers';
public function boot()
{
$this->configureRateLimiting();
$this->routes(function () {
Route::prefix('api')
->middleware('api')
->namespace($this->namespace)
->group(base_path('routes/api.php'));
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
});
}
А в routes/web.php не попадаю и в итоге у меня на экране - 404 not found
?
Где еще подебажить можно?
