{{-- Ortak satış listeleme partial'ı - leads, deals, cancellations sayfalarında kullanılır --}}
| # | Müşteri | Ürün Tipi | Başlangıç | Tutar | Durum | Ödeme | İşlemler |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} |
{{ $res->customer ? mb_substr($res->customer->first_name,0,1) . mb_substr($res->customer->last_name,0,1) : '?' }}
{{ $res->customer?->full_name ?? '-' }}
{{ $res->reservation_code }}
|
{{ $res->productType?->name ?? '-' }} | {{ $res->start_date ? $res->start_date->format('d.m.Y') : '-' }} | {{ number_format($res->total_amount, 0, ',', '.') }} ₺ | {{ $res->status_label }} | {{ $res->payment_status_label }} | |
Kayıt bulunamadıSeçili filtrelere uygun satış kaydı yok. |
|||||||