@extends('layouts.landingapp') @section('content')
{{-- --}} {{-- --}}
@foreach($Products as $Product)
{{--
New
--}}
    @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
@endsection