|
@php
$imagePath = ($studentInfo && $studentInfo->profile_pic)
? public_path('storage/uploads/students/thumbnail/' . $studentInfo->profile_pic)
: public_path('assets/frontend/images/avatar.png');
@endphp
|
|
| {{ $field['label'] }} | {!! nl2br(e($field['value'])) !!} |
|---|
| Date | Transaction ID | Status | Amount |
|---|---|---|---|
| {{ $payment->payment_date ? \Carbon\Carbon::parse($payment->payment_date)->format('d M Y') : 'N/A' }} | {{ $payment->transaction_id ?? 'N/A' }} | {{ $payment->status ?? 'N/A' }} | {{ number_format($payment->transactionAmount ?? 0, 2) }} |