Let's get started
With so many options available to you,
we suggest you start with the following:
- Read the Documentation
- Watch video tutorials at Laracasts
v13.6.0 View changelog
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')); }); }
With so many options available to you,
we suggest you start with the following:
v13.6.0 View changelog