| {{ $key + 1 }} |
{{ optional($gift->child)->child_number ?? 'N/A' }}
{{ optional($gift->child)->child_fname ?? 'Unknown' }}
{{ optional($gift->child)->child_lname ?? '' }}
|
UGX {{ number_format($gift->amount_sent, 0) }} |
{{ $gift->date_sent ? \Carbon\Carbon::parse($gift->date_sent)->format('F j, Y') : 'N/A' }} |
{{ $gift->date_purchased ? \Carbon\Carbon::parse($gift->date_purchased)->format('F j, Y') : 'N/A' }} |
@if ($gift->status === 'Not Processed')
{{ $gift->status }}
@elseif ($gift->status === 'Received')
{{ $gift->status }}
@elseif ($gift->status === 'Completed')
{{ $gift->status }}
@else
{{ $gift->status }}
@endif
|
|
@endforeach