Our Products

{{--

Lorem ipsum is simply free text available dolor sit amet, consectetur notted adipisicing
elit sed do eiusmod tempor incididunt simply free ut labore et dolore magna aliqua.

--}}
@foreach ($top_categories->take(6) as $index => $category)
@forelse ($category->products->take(18) as $product)
@if (count($product->images)) @else @endif
Brand: {{ $product->brand_name->name ?? 'N/A' }} {{ $product->name }}
@if (Auth::guard('customer')->check())

Price

${{ number_format($product->price ?? 0, 2) }}
@endif
@empty

No products available in this category.

@endforelse
@endforeach