@php $totalProducts = $products instanceof Illuminate\Pagination\LengthAwarePaginator ? $products->total() : $products->count(); $currentCount = $products->count(); @endphp
ترتيب حسب:
عرض {{ $currentCount }} منتج @if($totalProducts > $currentCount) من {{ $totalProducts }} @endif
@if($products->count() > 0)
@include('ecommerce::pages.partials.product-grid', compact('products'))
@if($products instanceof Illuminate\Pagination\LengthAwarePaginator && $products->hasPages())
@endif @else

لا توجد منتجات

لم يتم العثور على منتجات في هذا التصنيف.

@endif