Your Items
({{ Cart::instance('shopping')->count() }})
{{ Cart::instance('shopping')->count() }}
@if(Cart::instance('shopping')->count() > 0)
@php
$subtotal = Cart::instance('shopping')->subtotal();
$subtotal = str_replace(',', '', $subtotal);
$subtotal = str_replace('.00', '', $subtotal);
@endphp
Subtotal
৳{{ $subtotal }}
@endif