@if (count($products) > 0)
@foreach($products as $key=>$product)
@if(count($product->productImages) > 0) @if(count($product->productImages) > 1) @endif @endif

{{$product->name}}

{{$product->description}}

  • {{ config('constant.CURRENCY_SIGN') }}{{$product->productsVariantMax->selling_price}}
  • {{ config('constant.CURRENCY_SIGN') }}{{$product->productsVariantMax->retail_price}}
@if(count($product->productImages) > 0) @foreach($product->productImages as $image)
@endforeach @else
@endif
@include('front.product-detail.product-common-detail')
@endforeach
@else @include('front.no-data.no-product') @endif