@extends('admin.layout') @section('title', 'Detalle del Pedido') @section('page-title', 'Sipariş Detayı — ' . ($order->invoice_number ?? ('S#' . $order->id))) @section('content') @php($detail = $order->storeOrderDetail)
| Ürün | SKU | Adet | Birim Fiyat | İndirim | Toplam |
|---|---|---|---|---|---|
|
{{ $item->product_name }}
@if ($item->variant_attributes)
@foreach ($item->variant_attributes as $key => $value)
{{ ucfirst($key) }}: {{ $value }}@if(!$loop->last), @endif
@endforeach
@endif
|
{{ $item->sku }} |
{{ $item->quantity }} | {{ number_format($item->unit_price, 2, ',', '.') }} ₺ | {{ $item->line_discount > 0 ? number_format($item->line_discount, 2, ',', '.') . ' ₺' : '—' }} | {{ number_format($item->line_total, 2, ',', '.') }} ₺ |
{{ $detail->ship_recipient_name }} — {{ $detail->ship_phone }}
{{ $detail->ship_address_line }}
{{ $detail->ship_district }} / {{ $detail->ship_city }} {{ $detail->ship_postal_code }} — {{ $detail->ship_country }}
{{ $order->user?->name }} {{ $order->user?->last_name }}
{{ $order->user?->email }}