{{ __('shop::app.checkout.onepage.summary') }}
@if ($billingAddress = $cart->billing_address)
{{ __('shop::app.checkout.onepage.billing-address') }}
  • {{ $billingAddress->name }}
  • {{ $billingAddress->address1 }},
    {{ $billingAddress->state }}
  • {{ core()->country_name($billingAddress->country) }} {{ $billingAddress->postcode }}
  • {{ __('shop::app.checkout.onepage.contact') }} : {{ $billingAddress->phone }}
@endif @if ($shippingAddress = $cart->shipping_address)
{{ __('shop::app.checkout.onepage.shipping-address') }}
  • {{ $shippingAddress->name }}
  • {{ $shippingAddress->address1 }},
    {{ $shippingAddress->state }}
  • {{ core()->country_name($shippingAddress->country) }} {{ $shippingAddress->postcode }}
  • {{ __('shop::app.checkout.onepage.contact') }} : {{ $shippingAddress->phone }}
@endif
@inject ('productImageHelper', 'Webkul\Product\Helpers\ProductImage')
@foreach ($cart->items as $item)