@foreach ($categories as $category)
@endforeach
{{ $category->name }}
@if ($category->products->isEmpty())محصولی در این دستهبندی موجود نیست.
@else-
@foreach ($category->products->take(7) as $product)
@if (!$product->is_disabled)
-
{{ $product->name }}
{{ $product->description ?? 'بدون توضیح' }}
@if($product->price > 0) {{ number_format($product->price) }} تومان @else متغیر @endif
@endif
@endforeach