@extends('layouts.app') @section('title', 'Finance Dashboard') @section('breadcrumbs') @endsection @section('content')
Financial overview and key metrics
Total Revenue
Total Expenses
Accounts Receivable
Accounts Payable
| Voucher # | Type | Date | Amount | Status |
|---|---|---|---|---|
| {{ $voucher->voucher_number }} | {{ ucfirst($voucher->voucher_type) }} | {{ $voucher->voucher_date->format('d M Y') }} | {{ number_format($voucher->total_amount, 2) }} | @php $statusClass = match($voucher->status) { 'posted' => 'bg-success-subtle text-success', 'draft' => 'bg-secondary-subtle text-secondary', 'reversed' => 'bg-danger-subtle text-danger', default => 'bg-light text-dark' }; @endphp {{ ucfirst($voucher->status) }} |
| No recent vouchers | ||||