Fix 404 when trying to view a server
This commit is contained in:
parent
fb7ef2d775
commit
0e0a8d4347
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ class RouteServiceProvider extends ServiceProvider
|
||||||
->namespace($this->namespace . '\Auth')
|
->namespace($this->namespace . '\Auth')
|
||||||
->group(base_path('routes/auth.php'));
|
->group(base_path('routes/auth.php'));
|
||||||
|
|
||||||
Route::middleware(['web', 'csrf', 'auth', 'server', 'subuser'])->prefix('/server/{server}')
|
Route::middleware(['web', 'csrf', 'auth', 'server'])->prefix('/server/{server}')
|
||||||
->namespace($this->namespace . '\Server')
|
->namespace($this->namespace . '\Server')
|
||||||
->group(base_path('routes/server.php'));
|
->group(base_path('routes/server.php'));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue