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::get('user/{id}', function ($id) {
return 'User '.$id;
}); Route::get('posts/{post}/comments/{comment}', function ($postId, $commentId) {
//
});
Clickable & Draggable!