@extends('front.layouts.app', ['title' => 'Cart']) @section('content') @include('front.layouts.app-header')

Shopping Cart {{count($cartContents)}} Item

Product Details

Quantity

Price

Total

Remove

@if(isset($cartContents) && count($cartContents) > 0) @foreach($cartContents as $cart)
@if(!empty($cart->product->productsImageFirst->filename) && \Illuminate\Support\Facades\Storage::exists($cart->product->productsImageFirst->filename)) @else @endif
{{$cart->qty}}

{{config('constant.CURRENCY_SIGN')}}{{$cart->price}}

{{config('constant.CURRENCY_SIGN')}} {{ $cart->priceTotal }}

@endforeach @endif

Order Summary

  • {{ config('constant.CURRENCY_SIGN') }} {{ Cart::total() }}
  • $0.00
  • {{ config('constant.CURRENCY_SIGN') }}{{ Cart::total() }}
@include('front.layouts.app-footer') @endsection