@if(!Cart::isEmpty()) @foreach(Cart::getContent()->sort() as $item) @endforeach
Producto Precio Cantidad Total
{{ $item->name }}
₲{{ num_format($item->price) }}
{{ num_format($item->quantity * $item->price) }}
Total ₲{{ num_format(Cart::getTotal()) }}
Seguir comprando Pasar por caja
@else

Aún no hay productos en tu carrito.

@endif