@extends('layouts.app') @section('content') @php $cart_subtotal = Cart::subtotal(); $cart_total = Cart::total(); @endphp
@include('layouts.session')

Your Order

@forelse(Cart::content() as $key => $cart) @empty @endforelse
Product Total
{{$cart->name}} ({{$cart->options->product_category}}) {{setPriceFormat($cart->price)}}
No Item in your cart
Total {{setPriceFormat($cart_subtotal)}}

@endsection @push('js') @endpush