use Illuminate\Support\Facades\Route; public function boot(): void { $this->routes(function () { Route::middleware('api') ->prefix('api') ->group(base_path('routes/api.php')); Route::middleware('web') ->group(base_path('routes/web.php')); }); } Laravel

Let's get started

With so many options available to you,
we suggest you start with the following:

v13.6.0 View changelog