Expense Transaction Report
@if (!empty($filters['currency'])) Currency: {{ $filters['currency'] }} @else Currency: All @endif @if (!empty($filters['expense_for'])) • For: {{ ucfirst($filters['expense_for']) }} @endif @if (!empty($filters['from_date'])) • From: {{ \Carbon\Carbon::parse($filters['from_date'])->format('d M Y') }} @endif @if (!empty($filters['to_date'])) • To: {{ \Carbon\Carbon::parse($filters['to_date'])->format('d M Y') }} @endif • Printed: {{ now()->format('d M Y, h:i A') }}
Expense Transaction Report
@if (!empty($filters['currency'])) {{ $filters['currency'] }} @else PKR USD @endif @if (!empty($filters['expense_for'])) {{ ucfirst($filters['expense_for']) }} @endif @if (!empty($filters['from_date']) || !empty($filters['to_date'])) • {{ !empty($filters['from_date']) ? \Carbon\Carbon::parse($filters['from_date'])->format('d M Y') : 'Start' }} → {{ !empty($filters['to_date']) ? \Carbon\Carbon::parse($filters['to_date'])->format('d M Y') : 'End' }} @endif