@extends(get_view('index')) @section('title') {{ translate('pay') }} - @endsection @section('header') @endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if (cart()['products']->count() > 0) @if (Auth::check())

{{ __('Teslimat Adresi') }}

@if ($user_addresses->count() > 0)
@foreach ($user_addresses as $key => $item)

{{ $item->country->name }} / {{ $item->city }} / {{ $item->district }} / {{ $item->postcode }}

{{ $item->address }}

@endforeach

{{ __('Fatura Adresi') }}

@foreach ($user_addresses as $key => $item)

{{ $item->country->name }} / {{ $item->city }} / {{ $item->district }} / {{ $item->postcode }}

{{ $item->address }}

@endforeach
@else

* {{ __('Kayıtlı adresiniz bulunamadı') }} Yeni Adres ekleyin.

@endif

{{ __('Sipariş Özeti') }}

@foreach (cart()['products'] as $item) @endforeach
Ürün Fotoğrafı Ürün Adı Birim Fiyatı Adet Ara Toplam
@if ($item->product->first_image != null) {{ $item->product->content->name ?? '' }} @else

Ürün fotoğrafı yok

@endif
{{ $item->product->content->name ?? '' }} {{ $item->product->get_price(false) ?? '' }} {{ $item->quantity }} {{ $item->get_product_total(false) ?? '' }}

Sepet Özeti

  • Uygulanılan İndirim
    ₺0.00
  • Kargo Ücreti
    ₺0.00
  • Toplam
    {{ cart()['total_price_money_format'] }}

Sepete geri dön

@else {{-- @include(get_view('components.cart.payment.payment-quickly-form')) --}}

{{ translate('Order Summary') }}

@foreach (cart()['products'] as $item) @endforeach
Ürün Fotoğrafı Ürün Adı Birim Fiyatı Adet Ara Toplam
@if ( $item->product->first_image != null ) {{ $item->product->content->name ?? '' }} @else

Ürün fotoğrafı yok

@endif
{{ $item->product->content->name ?? '' }} {{ $item->product->get_price(false) ?? '' }} {{ $item->quantity }} {{ $item->get_product_total(false) ?? '' }}

{{ translate('contact_information') }}

{{ translate('Delivery Address') }}

{{ translate('Delivery Address') }}
{{ translate('Invoice Address') }}

{{ translate('Order Summary') }}

  • {{ translate('Basket Amount') }}: {{ cart()['total_price_money_format'] }}
  • {{ translate('Amount to be paid:') }}: {{ cart()['total_price_money_format'] }}
@endif
@include(get_view('components.cart.obf-modal')) @include(get_view('components.cart.mss-modal')) @include(get_view('components.user.addresses.add-new-address-modal')) @endif
@endsection @section('footer') @endsection