I\'m having some trouble with my pagination. I\'m having two tables with data from a database and I paginated it with laravel Paginator.
Now my problem is when you g
This is late, but it works with laravel 7.x
$messages = Message::where('status', 0) ->paginate(10, ['*'], 'p') ->appends(Arr::except(Request::query(), 'p'));
In your view, example(inbox.blade.php)
{{$messages->links()}}