@extends('front.layouts.app') @section('content')

My Cart Items


@forelse (Cart::getContent() as $item) @empty @endforelse
Item Quantity Unit Price Total Price
{{ $item->name }} {{ $item->quantity }} X {{ $item->attributes->currency }} {{ $item->price }} {{ $item->attributes->currency }} {{ $item->price*$item->quantity }}
No item found.
Sub Total {{ Cart::getContent()->first() ? Cart::getContent()->first()->attributes->currency : "INR" }} {{ Cart::getTotal() }}
Estimated shipping {{ Cart::getContent()->first() ? Cart::getContent()->first()->attributes->currency : "INR" }} 0.00
Total {{ Cart::getContent()->first() ? Cart::getContent()->first()->attributes->currency : "INR" }} {{ Cart::getTotal() }}
Continue Shopping Checkout
{{-- --}}
@endsection