Laravel - Routing
Consider this Laravel route definition:
What is the error in this code?
Route::get('/post/{id?}/{comment?}', function ($id = 1, $comment = 'none') {
return "$id - $comment";
});What is the error in this code?
