+ availability

This commit is contained in:
2026-01-26 09:06:06 +00:00
parent 18aad4749f
commit a448fce756
34 changed files with 1089 additions and 578 deletions

View File

@@ -22,22 +22,19 @@ class RouteServiceProvider extends ServiceProvider
*
* @return void
*/
public function boot()
public function boot()
{
$this->configureRateLimiting();
//$this->routesPath = base_path('routes');
$this->routes(function () {
Route::middleware('web')
->group(base_path('routes/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(base_path('routes/admin.php'));
});
}
/**
* Configure the rate limiters for the application.
*