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