Laravel - Request and Response
Identify the error in this Laravel code snippet that tries to get a query parameter
sort:Route::get('/items', function (Request $request) {
$sort = $request->query['sort'];
return $sort;
});