{{ __('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 @if(core()->getCurrentBranchCount() > 1)
{{ __('shop::app.checkout.onepage.place-order-branch', ['name' => core()->getCurrentBranch('true')->name]) }}
@endif
getCurrentLocale() && core()->getCurrentLocale()->direction == 'ltr') class="float-right" @else class="float-left" @endif>

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

@foreach ($cart->items as $item) @php $productBaseImage = $item->product->getTypeInstance()->getBaseImage($item); @endphp
variation && $item->variation->ImageUrl) src="{{ $item->variation->ImageUrl }}" @else src="{{ $productBaseImage['medium_image_url'] }}" @endif alt="" />
{!! view_render_event('bagisto.shop.checkout.name.before', ['item' => $item]) !!}
{{ $item->product->name }} @if (isset($item->additional['attributes']))
@foreach ($item->additional['attributes'] as $attribute) {{ $attribute['option_label'] }} @endforeach
@endif
{!! 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]) !!} {!! 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
{{ __('shop::app.customer.account.order.view.payment-method') }}

{{ $cart->payment->method }}