@extends('layouts.app', ['pageTitle' => 'Admin Finance Dashboard', 'pageSubtitle' => 'Summary of cash, receivables, payables, income, expenses and approvals']) @section('content')
Cash / Bank
₦{{ number_format($summary['cash'], 2) }}
Receivables
₦{{ number_format($summary['receivables'], 2) }}
Payables
₦{{ number_format($summary['payables'], 2) }}
Profit / Loss
₦{{ number_format($summary['income'] - $summary['expenses'], 2) }}
Income
₦{{ number_format($summary['income'], 2) }}
Expenses
₦{{ number_format($summary['expenses'], 2) }}
Pending Claims
{{ $summary['pending_claims'] }}
Unpaid Invoices / Bills
{{ $summary['unpaid_invoices'] }} / {{ $summary['unpaid_bills'] }}

Recent Payments

@forelse($recentPayments as $p)@empty@endforelse
NoTypeAmountDate
{{ $p->payment_number }}{{ $p->payment_type }}₦{{ number_format($p->amount,2) }}{{ $p->payment_date }}
No payment recorded.

Recent Claims

@forelse($recentClaims as $c)@empty@endforelse
ClaimUserAmountStatus
{{ $c->claim_number }}{{ $c->user_name }}₦{{ number_format($c->amount + $c->tax_amount,2) }}{{ $c->status }}
No claim submitted.
@endsection