@extends('layouts.app') @section('title','Expenses Report') @section('styles')@endsection @section('content')
Total Amount
KES {{ number_format($totals['amount']) }}
Paid
KES {{ number_format($totals['paid']) }}
Pending
KES {{ number_format($totals['balance']) }}
| Category | Count | Amount | Paid | Balance |
|---|---|---|---|---|
| {{ $cat }} | {{ $v['count'] }} | {{ number_format($v['amount']) }} | {{ number_format($v['paid']) }} | {{ number_format($v['balance']) }} |