0

I am using laravel 7 and in my controller I want to paginate data, here is my code

$offers = Auth::user()->products()->paginate(1)->with('offers')->get()->pluck('offers')->flatten();

The question is, how can i use

$offers->links()

in my blade.

Thanks in advance

  • Does this answer your question? [How can I display pagination in laravel?](https://stackoverflow.com/questions/48903173/how-can-i-display-pagination-in-laravel) – SEYED BABAK ASHRAFI Apr 22 '21 at 04:57

1 Answers1

0

Check this one: Paginated Collections in Laravel

Militaru
  • 521
  • 5
  • 11