How to show pagination of resource collection to blade file in laravel?
I want to show pagination on my page based on the data from the resource collection. I have done this code for get data in collection and paginate. return auth()->user()->hasRole('admin') ? ArticleResource::collection(Article::latest()->paginate(5)) : ArticleResource::collection(auth()->user()->articles()->latest()->paginate(5));