Laravel - Request and Response
What will be the output of this Laravel code snippet?
Given the URL is
$value = $request->query('page', 1);
echo $value;Given the URL is
/items (no query parameters).