@extends(get_view('index')) @section('title', __('Teslimat ve Fatura') . ' - ') @section('header') @endsection @section('content')

{{ __('Teslimat ve Fatura') }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if (cart()['products']->count() > 0) @if (Auth::check())
@csrf

{{ __('Teslimat Adresi') }}

{{ __('Yeni Adres Ekle') }} @if ($user_addresses->count() > 0)
@foreach ($user_addresses as $key => $item)
  • {{ __('Adı Soyadı') }}: {{ $item->fullname }}
  • {{ __('E-posta') }}: {{ $item->email }}
  • {{-- $user_addresses modelinizde 'email' adlı bir alanınızın olduğundan emin olun --}}
  • {{ __('Telefon') }}: {{ $item->phone }}
  • {{ $item->address }}
    {{ $item->city }}, {{ $item->district }} - {{ $item->postcode }}
@endforeach
@else

{{ __('Kayıtlı Adresiniz Bulunamadı') }}

{{ __('Lütfen yeni bir adres ekleyin') }}

@endif

{{ __('Fatura Adresi') }}

@if ($user_addresses->count() > 0)
@foreach ($user_addresses as $key => $item)
  • {{ __('Adı Soyadı') }}: {{ $item->fullname }}
  • {{ __('E-posta') }}: {{ $item->email }}
  • {{-- $user_addresses modelinizde 'email' adlı bir alanınızın olduğundan emin olun --}}
  • {{ __('Telefon') }}: {{ $item->phone }}
  • {{ $item->address }}
    {{ $item->city }}, {{ $item->district }} - {{ $item->postcode }}
@endforeach
@else

{{ __('Kayıtlı Adresiniz Bulunamadı') }}

{{ __('Lütfen yeni bir adres ekleyin') }}

@endif
{{ __('Sipariş Özeti') }}
@foreach (cart()['products'] as $item) @endforeach {{-- --}}
{{ __('Ürün') }} {{ __('Fiyat') }}
{{ $item->product->content->name ?? '' }}
x{{ $item->quantity }}
{{ $item->get_product_total(false) ?? '' }}
{{ __('Ara Toplam') }} {{ cart()['total_price_money_format'] ?? '' }}
Shipping Method {{ cart()['total_price_money_format'] ?? '' }}
{{ __('Toplam') }} {{ cart()['total_price_money_format'] ?? '' }}
{{--

Make your payment directly into our bank account. Please use {{ __('Sipariş Özeti') }} ID as the payment reference. {{ __('Sipariş Özeti') }} will not be shipped until the funds have cleared in our account.

Pay with cash upon delivery.

Paypal payment

Pay via PayPal; you can pay with your credit card if you don’t have a PayPal account.

--}}

{{ __('Adres seçimini onayla ve ödeme adımına ilerle.') }}

@else
@csrf

{{ __('İletişim Bilgileri') }}

{{ __('Fatura Adresi') }}

{{--
--}}
{{ __('Sipariş Özeti') }}
@foreach (cart()['products'] as $item) @endforeach {{-- --}}
{{ __('Ürün') }} {{ __('Fiyat') }}
{{ $item->product->content->name ?? '' }}
x{{ $item->quantity }}
{{ $item->get_product_total(false) ?? '' }}
Subtotal {{ cart()['total_price_money_format'] ?? '' }}
Shipping Method {{ cart()['total_price_money_format'] ?? '' }}
{{ __('Toplam') }} {{ cart()['total_price_money_format'] ?? '' }}
{{--

Make your payment directly into our bank account. Please use {{ __('Sipariş Özeti') }} ID as the payment reference. {{ __('Sipariş Özeti') }} will not be shipped until the funds have cleared in our account.

Pay with cash upon delivery.

Paypal payment

Pay via PayPal; you can pay with your credit card if you don’t have a PayPal account.

--}}

{{ __('Adres seçimini onayla ve ödeme adımına ilerle.') }}

@endif @endif
@include(get_view('components.user.addresses.add-new-address-modal')) @include(get_view('components.user.addresses.update-modal')) @endsection @section('footer') @endsection