@if ($cart && $cart->items->count())
Bag Summary ({{ $count = $cart ? $cart->items()->count() : 0 }}) View Full Bag
@foreach ($cart->items as $item)
{{ $item->name }}
{{ $item->name }}

${{ number_format($item->price, 2) }}

Qty: {{ $item->quantity }}
@endforeach

Total

${{ number_format($cart->grand_total, 2) }}

CheckOut @else

Your bag is empty.

@endif