@extends('layouts.landingapp') @section('content') {{-- @php dd($storeid) @endphp --}}
@if($Store) @endif
@php $total = 0 @endphp @if($cartitem) @foreach($cartitem as $details) @php $total += $details['price'] * $details['quantity'] @endphp @endforeach @endif
Image Product Features Price Quantity Total
{{--
{{ $details['title'] }}
--}}
@if($details['PropertyTypeValueIDs'] != [0]) @foreach($details['PropertyTypeValueIDs'] as $id) @if($Value = App\ProductPropertyTypeValue::getValue($id))

{{$Value->title}}

@endif @endforeach @else

not mentioned

@endif
{{ $details['title'] }}
@currency($details['price'])
@currency($details['price'] * $details['quantity'])
{{--
Address
--}}
Cart total
  • Total {{$total}}
  • {{--
  • Total $ 750.0
  • --}}
{{-- Proceed to WhatsApp --}} {{--
--}} Place Order
@endsection