@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)}}

Note: Please don't change transaction amount during transaction, if you do so you will loss your tokens and not able to download product.
@endsection @push('js_link') {{-- --}} @endpush @push('js') @endpush @push('js') @endpush