Laravel - Routing
Consider this Laravel controller method:
What will be the output when the route is called without the page parameter?
public function index($page = 1) { return 'Page: ' . $page; }What will be the output when the route is called without the page parameter?
