@csrf
{{ __('shop::cart.name') }}
@if (Cart::count())
@foreach (Cart::items() as $item)
{{ $item->name }}
@if ($item->variant)
{{ $item->variant->display_name }}
@endif
{{ $item->quantity }}
@if ($item->isGift())
{{ __('shop::cart.product_gift') }}
@else
{{ $item->quantity }} x
@if ($item->price_old && !$item->price_modifier)
{!! price_currency($item->price_old) !!}
@endif
{!! price_currency($item->price) !!}
@endif
@endforeach
@else
{{ __('shop::cart.empty') }}
@endif
@if (Cart::count())
@if (Cart::discount())
{!! __('shop::cart.discount') !!} @if (Cart::coupon()) @endif
-{!! price_currency(Cart::discount()) !!}
@endif
{{ __('shop::cart.to_pay') }}
{!! price_currency(Cart::total() - Cart::discount()) !!}
@if ($cheapestDelivery)
{{ __('shop::cart.delivery_from') }}
@if ($cheapestDelivery->price == 0)
{{ __('shop::cart.delivery_free') }}
@else
{!! price_currency($cheapestDelivery->price) !!}
@endif
@endif @if (!Cart::coupon())
{{ __('shop::cart.coupon') }} +
@if (isset($couponError))
{{ __('shop::cart.coupon_error') }}
@endif @endif
@endif