{{-- تابع تطوير صفحة show لتصريح فرد مع الإحصائيات والجداول --}} {{-- الرصيد والمالية --}}
| رقم التجديد | من التاريخ | إلى التاريخ | المبلغ | المدفوع | الحالة |
|---|---|---|---|---|---|
| {{ $renewal->renewal_number }} | {{ optional($renewal->renewed_from)->format('Y-m-d') }} | {{ optional($renewal->renewed_to)->format('Y-m-d') }} | {{ number_format((float)$renewal->net_amount, 2) }} | {{ number_format((float)$renewal->paid_amount, 2) }} | {{ $renewal->payment_status_label }} |
| رقم العملية | التاريخ | النوع | الطريقة | المبلغ | الملاحظات |
|---|---|---|---|---|---|
| {{ $transaction->transaction_number }} | {{ optional($transaction->transaction_date)->format('Y-m-d H:i') }} | {{ $transaction->transaction_type_label }} | {{ $transaction->payment_method_label }} | {{ number_format((float)$transaction->amount, 2) }} | {{ $transaction->description ?? '-' }} |
| التاريخ | الحدث | الوصف |
|---|---|---|
| {{ optional($log->occurred_at)->format('Y-m-d H:i') }} | {{ $log->action }} | {{ $log->description ?? '-' }} |