table with hotels

This commit is contained in:
2026-01-18 18:03:20 +00:00
parent ea511a00e6
commit 18aad4749f
16 changed files with 276 additions and 233 deletions

View File

@@ -26,17 +26,16 @@ class RouteServiceProvider extends ServiceProvider
{
$this->configureRateLimiting();
// Установите путь к маршрутам
$this->routesPath = base_path('routes');
//$this->routesPath = base_path('routes');
$this->routes(function () {
Route::middleware('web')
->group($this->routesPath . '/web.php');
//$this->routes(function () {
//Route::middleware('web')
//->group($this->routesPath . '/web.php');
Route::middleware(['web', 'auth'])
->prefix('admin')
->group($this->routesPath . '/admin.php');
});
//Route::middleware(['web', 'auth'])
//->prefix('admin')
//->group($this->routesPath . '/admin.php');
//});
}
/**