@php $subtotal = Cart::instance('shopping')->subtotal(); $subtotal=str_replace(',','',$subtotal); $subtotal=str_replace('.00', '',$subtotal); $shipping = Session::get('shipping')?Session::get('shipping'):0; $discount = Session::get('discount')?Session::get('discount'):0; @endphp @foreach(Cart::instance('shopping')->content() as $value) @endforeach
Product Quantity Subtotal

{{Str::limit($value->name,20)}}

{{$value->qty}}xTK{{$value->price}}

TK {{$value->price * $value->qty}}

Total Tk {{ $subtotal + $shipping }}