Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel 5 append anchor links for pagination numbers

How can I append a #something to the end of the page number.

For example, this is what I want:

From:

abc.com/xxx/?page=2

To:

abc.com/xxx/?page=2#my-anchor
like image 250
JK9 Avatar asked Dec 29 '25 00:12

JK9


1 Answers

You can read about pagination in the docs here; Laravel Pagination.

What you are looking for is ->fragment('my-anchor').

Assuming you are using eloquent,

$links = App\YourModel::paginate(15)->fragment('my-anchor')->links();

Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!