1043 0 0 0
Last Updated : 2025-04-29 00:31:22
how to show elements count in pagination in laravel blade such as 1-10 of 50 records
<span> {{ $products->firstItem() }}-{{ $products->lastItem() }} of {{ count( \App\Models\Product::all() )}}</span>
or use this
<span> {{ $products->firstItem() }}-{{ $products->lastItem() }} of {{ $products->total() )}}</span>