@lang('messages.YOUR_SHOPPING_CART')

@foreach ($cart->items as $item)
@if ($item->product->brand)

{{ $item->product->brand['marca'] }}

@endif

{{ $item->product->name }}

@if ($item->product->isInSale())
{{ Helper::formatAsCurrency($item->product->regularPrice * $item->qtd) }} {{ Helper::formatAsCurrency($item->product->salePrice * $item->qtd) }}
@else
@lang('messages.PRICE'){{ Helper::formatAsCurrency($item->product->salePrice * $item->qtd) }}
@endif
{{ $item->qtd }}
@endforeach
Subtotal: {{ Helper::formatAsCurrency($cart->totalWithoutDiscounts) }}
@lang('messages.DISCOUNT'): {{ Helper::formatAsCurrency($cart->discounts) }}
@lang('messages.LI_TOTAL') ({{ $cart->qtt }} items): {{ Helper::formatAsCurrency($cart->total) }}
@auth @lang('messages.CHECKOUT') @endauth @guest @lang('messages.CHECKOUT') @endguest