@extends('layouts.landingapp') @section('content')
@if($Stores->count()) @endif {{-- --}}
@if($Bannerimg)
@endif
@if($CategoryProducts->count())
@foreach($CategoryProducts as $CategoryProduct)
    @if($CategoryProduct->ProductProperties()->count() != 0) @foreach($CategoryProduct->ProductProperties as $item)
  • {{$CategoryProduct->product_property_type_value->title ?? ''}}
  • @endforeach @endif
{{$CategoryProduct->title}}
@currency($CategoryProduct->sales_amount)@currency($CategoryProduct->mrp)
@endforeach
@else
No items avilable
@endif
@endsection