@extends('layouts.app') @section('title', 'Revenue Report') @section('page-title', 'Reports') @section('content')
| Month | Revenue (₦) |
|---|---|
| {{ $row['month'] }} | ₦{{ number_format($row['revenue'], 2) }} |
| Total | ₦{{ number_format(array_sum(array_column($monthly, 'revenue')), 2) }} |