| Producto | Subtotal | @foreach(Cart::getContent() as $item)
|---|---|
| {{ $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) }} |