I'd like to paginate a page. I'm using this code in my controller:
$docItems = DocumentationItem::orderBy('id', 'DESC')->get()->paginate(5);
and this in my view file:
{{ $docItems->withQueryString()->links() }}
but I am getting this error:
Method Illuminate\Database\Eloquent\Collection::paginate does not exist.
I've checked similar questions here but none of the answers seemed to work for me. I'm using Laravel 7. What am I doing wrong?