Sepetim

Sipariş vermeden önce sepetinizi kontrol edin.

@if($items->isEmpty())

Sepetiniz boş.

Ürünlere Göz At
@else
@foreach($items as $item)
@if($item->product->image_url) {{ $item->product->name }} @else @endif

{{ $item->product->name }}

SKU: {{ $item->product->sku }}

@csrf @method('PUT')
x ₺{{ number_format($item->unit_price, 2, ',', '.') }} KDV %{{ (int) $item->vat_rate }}
₺{{ number_format($item->line_total, 2, ',', '.') }}
@csrf @method('DELETE')
@endforeach
@csrf

Sipariş Özeti

Ara Toplam ₺{{ number_format($subTotal, 2, ',', '.') }}
KDV Toplam ₺{{ number_format($vatTotal, 2, ',', '.') }}
@if(!empty($vatBreakdown) && count($vatBreakdown) > 1)
@foreach($vatBreakdown as $rate => $amount)
KDV %{{ (int) $rate }} ₺{{ number_format($amount, 2, ',', '.') }}
@endforeach
@endif
Kargo Ücretsiz
Toplam ₺{{ number_format($grandTotal, 2, ',', '.') }}

Not Ekle (Opsiyonel)

Siparişi Gönder
@endif