@extends('layouts.main') @section('title', 'Sipariş Tamamla') @push('styles') @endpush @section('content')

Sipariş Tamamla

@csrf
@auth('customer') @if($addresses->isNotEmpty())

Kayıtlı Adresleriniz

Geri Dön
@foreach($addresses as $address)
is_default ? 'checked' : '' }}>
@endforeach
@endif @endauth
check() && $addresses->isNotEmpty() ? 'style="display: none;"' : '' !!}>

Müşteri Bilgileri

check() && $addresses->isNotEmpty() ? 'style="display: none;"' : '' !!}>

Teslimat Bilgileri

Sipariş Notu

Sipariş Özeti

@foreach($cart->items as $item)
{{ $item->product->name }} {{ $item->quantity }} Adet {{ $item->weight }} KG
₺{{ number_format($item->subtotal, 2) }}
@endforeach
Ara Toplam ₺{{ number_format($cart->subtotal, 2) }}
Teslimat Ücreti ₺{{ number_format($cart->delivery_cost, 2) }}
Toplam ₺{{ number_format($cart->total, 2) }}
×

Mesafeli Satış Sözleşmesi

1. Taraflar

Satıcı:

  • Unvan: Serap Gerebiç
  • Adres: Necmettin Erbakan Mah. Turgut Özal Cad. Ilhamur Apt No: 38A Merkez/Kilis
  • Telefon: 0543 868 71 88
  • E-posta: serapgerebic1@gmail.com
  • Vergi Numarası: 4630358873

Alıcı:

  • Ad Soyad:
  • Telefon:
  • E-posta:
  • Adres:

3. Satışa Konu Ürünler

@foreach($cart->items as $item) @endforeach
Ürün Adet Ağırlık Tutar
{{ $item->product->name }} {{ $item->quantity }} {{ $item->weight }} KG ₺{{ number_format($item->subtotal, 2) }}
Ara Toplam: ₺{{ number_format($cart->subtotal, 2) }}
Kargo Ücreti: ₺{{ number_format($cart->delivery_cost, 2) }}
Toplam: ₺{{ number_format($cart->total, 2) }}
@include('partials.contract-content')
@endsection @push('scripts') @if($cart && $cart->items && !$cart->items->isEmpty()) @endif @endpush