{{ ucfirst($donor->donor_name) }}
{{--
--}}
Transaction History
@php
$totalPaid = 0;
@endphp
Date |
Income Head Name |
Narration |
Received Amount |
{{-- Type | --}}
@forelse($donorRecords as $record)
@php $totalPaid += $record->paid_amount; @endphp
{{ \Carbon\Carbon::parse($record->created_at)->format('d-m-Y') }} |
{{ $record->income_head_name }} |
{{ $record->transaction_narration }} |
₹ {{ number_format($record->paid_amount, 2) }}
|
{{--
{{ ucfirst($record->income_expense) }}
| --}}
@empty
No records found |
@endforelse
Grand Total |
₹ {{ number_format($totalPaid, 2) }}
|
|