@include('layouts.session')
Your Order
Product | Total |
---|---|
{{$cart->name}} ({{$cart->options->product_category}}) | {{setPriceFormat($cart->price)}} |
No Item in your cart | |
Total | {{setPriceFormat($cart_subtotal)}} |
@extends('layouts.app') @section('content')
@php $cart_subtotal = Cart::subtotal(); $cart_total = Cart::total(); @endphpProduct | Total |
---|---|
{{$cart->name}} ({{$cart->options->product_category}}) | {{setPriceFormat($cart->price)}} |
No Item in your cart | |
Total | {{setPriceFormat($cart_subtotal)}} |