Laravel - Routing
Consider this route:
What will be the output when visiting '/user/42'?
Route::get('/user/{id}', function ($id) { return 'User ID: ' . $id; });What will be the output when visiting '/user/42'?
