Monthly Income Report

{{ \Carbon\Carbon::create($year, $month, 1)->format('F Y') }}

Period: {{ $startDate->format('d-m-Y') }} to {{ $endDate->format('d-m-Y') }} Generated On: {{ \Carbon\Carbon::now()->format('d-m-Y H:i:s') }}
@if($organisation)
Organisation: {{ $organisation->organisation_name }}
@endif @if($accountingYear)
Financial Year: {{ $accountingYear->accounting_year_financial }}
@endif
{{ $totalCount }}
₹ {{ number_format($totalAmount, 2) }}
₹ {{ $totalCount > 0 ? number_format($totalAmount / $totalCount, 2) : '0.00' }}
@if(count($summaryByHead) > 0) @foreach($summaryByHead as $summary) @endforeach
Income Head Count Total Amount
{{ $summary['head_name'] }} {{ $summary['count'] }} ₹ {{ number_format($summary['total_amount'], 2) }}
Grand Total {{ $totalCount }} ₹ {{ number_format($totalAmount, 2) }}
@endif

Detailed Transactions

@forelse($incomes as $index => $income) @empty @endforelse @if(count($incomes) > 0) @endif
SL Date Organisation Division Income Head Amount (₹) Payment Type Reference Narration
{{ $index + 1 }} {{ \Carbon\Carbon::parse($income->transaction_date)->format('d-m-Y') }} {{ $income->organisation->organisation_name ?? 'N/A' }} {{ $income->accountType->account_type_Name ?? 'N/A' }} {{ $income->incomeHead->income_head_name ?? 'N/A' }} ₹ {{ number_format($income->transaction_amount, 2) }} {{ $income->paymentType->name ?? 'N/A' }} {{ $income->transaction_reference ?? '-' }} {{ Str::limit($income->transaction_narration ?? '-', 30) }}
No income transactions found for the selected period.
Grand Total: ₹ {{ number_format($totalAmount, 2) }}
{{-- --}}