@extends('layouts.app') @section('title', 'Revenue Report') @section('page-title', 'Reports') @section('content')
Revenue Top Clients VAT Report Export CSV
Monthly Revenue — Last 12 Months
Paid invoices only
@foreach(array_reverse($monthly) as $row) @endforeach
Month Revenue (₦)
{{ $row['month'] }} ₦{{ number_format($row['revenue'], 2) }}
Total ₦{{ number_format(array_sum(array_column($monthly, 'revenue')), 2) }}
@endsection @push('scripts') @endpush