Resumen de compra

@foreach(Cart::getContent() as $item) @endforeach
Producto Subtotal
{{ $item->name }} x {{ $item->quantity }} ₲{{ num_format($item->quantity * $item->price) }}
Envío {{ $shipping_price ? '₲'.num_format($shipping_price) : 'Sin costo' }}
Total ₲{{ num_format(Cart::getSubTotal() + $shipping_price) }}
Volver al carrito