Pagination + URL Params in Laravel 7
问题 If I go to http://app.test/visitor?interval=week, I will see this Issue 🐞 As soon as I clicked on the second one, I got redirected to : http://app.test/visitor?page=2 It removed my interval=week , which ruined my query view for my weekly views. Code This is how I construct my page public function index() { $inputs = Request::all(); $interval = ''; if(array_key_exists('interval', $inputs)){ $interval = $inputs['interval']; } switch ($interval) { case 'day': $visitors = Visitor::where('created