Level 50
@Cheers02 This is covered in the documentation, see https://laravel.com/docs/5.5/pagination#displaying-pagination-results
i.e.
{{ $users->fragment('foo')->links() }}
would create links like:
/users/?page=2#foo
i have pagination in my view, and i have filter so the link will be like thishttp://localhost:8000/home#red but when i click page 2 the link will be like this http://localhost:8000/filter?color=red&page=2 i cant go to page 2
Please or to participate in this conversation.