Fix local file upload

This commit is contained in:
Julien Nahum
2024-01-13 18:17:24 +01:00
parent ff7e1ac7c3
commit bf98497711
9 changed files with 18 additions and 48 deletions

View File

@@ -19,15 +19,6 @@ class RouteServiceProvider extends ServiceProvider
*/
public const HOME = '/home';
/**
* The controller namespace for the application.
*
* When present, controller route declarations will automatically be prefixed with this namespace.
*
* @var string|null
*/
// protected $namespace = 'App\\Http\\Controllers';
/**
* Define your route model bindings, pattern filters, etc.
*
@@ -39,14 +30,9 @@ class RouteServiceProvider extends ServiceProvider
$this->registerGlobalRouteParamConstraints();
$this->routes(function () {
Route::middleware('api')
->namespace($this->namespace)
->group(base_path('routes/api.php'));
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
});
}