@extends('layouts.app') @section('content')
@php $cart_count = Cart::count(); $cart_subtotal = Cart::subtotal(); $cart_total = Cart::total(); @endphpYou have {{$cart_count > 1 ? $cart_count.' items' : $cart_count.' item'}} in your cart
Product | Price | Remove | |
---|---|---|---|
{{$cart->name}} ({{$cart->options->product_category}}) | {{ $cart->price + 0 }} {{getCurrency()}} | ||
No product in your cart |
Cart Subtotal | {{$cart_subtotal + 0}} {{getCurrency()}} |
Total | {{ $cart_subtotal + 0}} {{getCurrency()}} |