laravel api routing code example
Example 1: laravel grouping routes
Route::middleware(['first', 'second'])->group(function () {
Route::get('/', function () {
// Uses first & second middleware...
});
Route::get('/user/profile', function () {
// Uses first & second middleware...
});
});
Example 2: laravel route
Route::get('user/profile', [UserProfileController::class, 'show'])->name('profile');