Income Report

Period: {{ \Carbon\Carbon::parse($dateFrom)->format('M d, Y') }} to {{ \Carbon\Carbon::parse($dateTo)->format('M d, Y') }}

Generated on: {{ now()->format('M d, Y h:i A') }}

Total Income

{{ number_format($totalIncome ?? 0, 2) }}

@forelse($incomes as $index => $income) @empty @endforelse @if($incomes->count() > 0) @endif
# Income Number Description Category Date Amount
{{ $index + 1 }} {{ $income->income_number ?? 'N/A' }} {{ $income->description ?? 'N/A' }} {{ $income->category ?? 'N/A' }} {{ $income->income_date->format('M d, Y') }} {{ number_format($income->total, 2) }}
No income data available
Total: {{ number_format($totalIncome ?? 0, 2) }}