Laravel - Routing
What will be the output of this Laravel route call?
When visiting URL: /item
Route::get('/item/{id?}', function ($id = 10) { return $id; });When visiting URL: /item
Route::get('/item/{id?}', function ($id = 10) { return $id; });15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions