{{ __('shop::app.checkout.onepage.summary') }}

@if ($billingAddress = $cart->billing_address)
{{ __('shop::app.checkout.onepage.billing-address') }}
  • {{ $billingAddress->company_name ?? '' }}

  • {{ $billingAddress->name }}

  • {{ $billingAddress->address1 }},

  • {{ $billingAddress->postcode . " " . $billingAddress->city }}

  • {{ $billingAddress->state }}

  • {{ core()->country_name($billingAddress->country) }}

  • {{ __('shop::app.checkout.onepage.contact') }} : {{ $billingAddress->phone }}
@endif @if ($cart->haveStockableItems() && $shippingAddress = $cart->shipping_address)
{{ __('shop::app.checkout.onepage.shipping-address') }}
  • {{ $shippingAddress->company_name ?? '' }}

  • {{ $shippingAddress->name }}

  • {{ $shippingAddress->address1 }},

  • {{ $shippingAddress->postcode . " " . $shippingAddress->city }}

  • {{ $shippingAddress->state }}

  • {{ core()->country_name($shippingAddress->country) }}

  • {{ __('shop::app.checkout.onepage.contact') }} : {{ $shippingAddress->phone }}
@endif

{{ __('velocity::app.checkout.items') }}

@foreach ($cart->items as $item) @php $productBaseImage = $item->product->getTypeInstance()->getBaseImage($item); @endphp
{!! view_render_event('bagisto.shop.checkout.name.before', ['item' => $item]) !!}
{{ $item->product->name }}
{!! view_render_event('bagisto.shop.checkout.name.after', ['item' => $item]) !!}
{!! view_render_event('bagisto.shop.checkout.price.before', ['item' => $item]) !!} {{ core()->currency($item->base_price) }} {!! view_render_event('bagisto.shop.checkout.price.after', ['item' => $item]) !!} {!! view_render_event('bagisto.shop.checkout.quantity.before', ['item' => $item]) !!} {{ $item->quantity }} ({{ __('shop::app.checkout.onepage.quantity') }}) {!! view_render_event('bagisto.shop.checkout.quantity.after', ['item' => $item]) !!}
{{ core()->currency($item->base_total) }}
{!! view_render_event('bagisto.shop.checkout.options.before', ['item' => $item]) !!} @if (isset($item->additional['attributes']))
@foreach ($item->additional['attributes'] as $attribute) {{ $attribute['attribute_name'] }} : {{ $attribute['option_label'] }}
@endforeach
@endif {!! view_render_event('bagisto.shop.checkout.options.after', ['item' => $item]) !!}
@endforeach
@if ($cart->haveStockableItems())

{{ core()->currency($cart->selected_shipping_rate->base_price) }}

{{ $cart->selected_shipping_rate->method_title }}
@endif

{{ core()->getConfigData('sales.paymentmethods.' . $cart->payment->method . '.title') }}

{{ __('shop::app.customer.account.order.view.payment-method') }}