@if(!blank(Cart::content())) @foreach(Cart::content() as $content)
{{ $content->name }} {{ currencyName($content->price) }}
@if(isset($content->options->variation['name']) && isset($content->options->variation['price'])) {{ $content->options->variation['name'] }} @endif @if(!blank($content->options->options))
@foreach ($content->options->options as $option) + {{ $option['name'] }}
@endforeach @endif
@endforeach @endif

{{ __('frontend.subtotal') }} {{ currencyName(Cart::totalFloat()) }}
{{ __('frontend.total') }} {{ currencyName(Cart::totalFloat()) }}
{{ __('frontend.go_to_checkout') }}