Laravel - Request and Response
What will be the output of this Laravel code snippet if the URL is '/products?filter=popular':
Route::get('/products', function (Request $request) {
return $request->query('filter', 'new');
});