Reports

PDF and Excel Export Center

@foreach ($reports as $type => $report)

{{ $report['title'] }}

{{ $report['description'] }}

@endforeach

Accounting Snapshot

@foreach ($summary as $section => $metrics)

{{ str($section)->headline() }}

@foreach ($metrics as $metric => $value)
{{ str($metric)->headline() }} NPR {{ number_format((float) $value, 2) }}
@endforeach
@endforeach

Recent Generated Reports

@forelse ($recentReports as $report)

{{ str($report->report_type)->headline() }} Report

{{ $report->created_at->format('Y-m-d H:i') }} - {{ $report->status }}

@empty

Exports you generate will be listed here.

@endforelse