{{ __('shop::app.checkout.onepage.summary') }}
@if ($billingAddress = $cart->billing_address)
{{ __('shop::app.checkout.onepage.billing-address') }}
  • {{ $billingAddress->company_name ?? '' }}
  • {{ $billingAddress->first_name }} {{ $billingAddress->last_name }}
  • {{ $billingAddress->address1 }},
  • {{ $billingAddress->postcode . " " . $billingAddress->city }}
  • {{ $billingAddress->state }}
  • {{ core()->country_name($billingAddress->country) }} {{ $billingAddress->postcode }}
  • {{ __('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->first_name }} {{ $shippingAddress->last_name }}
  • {{ $shippingAddress->address1 }},
  • {{ $shippingAddress->postcode . " " . $shippingAddress->city }}
  • {{ $shippingAddress->state }}
  • {{ core()->country_name($shippingAddress->country) }}
  • {{ __('shop::app.checkout.onepage.contact') }} : {{ $shippingAddress->phone }}
@endif
@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]) !!}
{{ __('shop::app.checkout.onepage.price') }} {{ 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]) !!}
{{ __('shop::app.checkout.onepage.quantity') }} {{ $item->quantity }}
{!! view_render_event('bagisto.shop.checkout.quantity.after', ['item' => $item]) !!} {!! 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') }}