@if (is_null($products) || count($products) == 0)

No Result Found

@else @foreach ($products as $product) @if ($product->status)
  • @if (count($product->images)) product @else product @endif
    ${{ number_format($product->msrp ?? 0, 2) }}
    {{--
    --}}
    @if ($product->total_stock > 0 && !$product->is_outof_stock) Cart @else @endif
  • @endif @endforeach @endif