Route Parameters: Required Parameters

Syntax

Route::get('user/{id}', function ($id) {
    return 'User '.$id;
});

Syntax

Route::get('posts/{post}/comments/{comment}', function ($postId, $commentId) {
    //
});

Route Parameters: Required Parameters — Structure map

Clickable & Draggable!

Route Parameters: Required Parameters — Related pages: