Ödeme Detayı

Ödeme #{{ $payment->id }}

Ödeme Bilgileri

₺{{ number_format($payment->amount, 2, ',', '.') }}

{{ $payment->methodIcon }} {{ $payment->methodLabel }}

{{ \Carbon\Carbon::parse($payment->paid_at)->translatedFormat('d M Y H:i') }}

{{ \Carbon\Carbon::parse($payment->created_at)->translatedFormat('d M Y H:i') }}

@if($payment->notes)

{{ $payment->notes }}

@endif

Müşteri Bilgileri

{{ $payment->customer->name }}@if($payment->customer->surname) {{ ' ' . $payment->customer->surname }}@endif

{{ $payment->customer->email }}

{{ $payment->customer->phone ?? '-' }}

{{ $payment->customer->customer_type === 'individual' ? 'Bireysel' : 'Kurumsal' }}
@if($payment->invoice)

Fatura Bilgileri

{{ $payment->invoice->invoice_number ?? '#' . $payment->invoice->id }}

₺{{ number_format($payment->invoice->total, 2, ',', '.') }}

{{ \Carbon\Carbon::parse($payment->invoice->issue_date)->translatedFormat('d M Y') }}

{{ ucfirst($payment->invoice->status) }}
@endif