@extends('layouts.landingapp') @section('content')
{{--
@if($Relatedstores)
@endif
--}} @if($Products->count())
@foreach($Products as $Product)
    @if($Product->ProductProperties()->count() != 0) @foreach($Product->ProductProperties as $item)
  • {{$item->product_property_type_value->title ?? ''}}
  • @endforeach @endif
{{$Product->title}}
@currency($Product->sales_amount)@currency($Product->mrp)
@endforeach
@else
No Items Available!
@endif
@endsection