@extends('admin.layouts.app') @section('title', 'Accounting Dashboard') @section('page-title', 'Accounting Dashboard') @section('content')

Total Ledgers

{{ $stats['total_ledgers'] }}

Total Vouchers

{{ $stats['total_vouchers'] }}

Posted

{{ $stats['posted_vouchers'] }}

Draft

{{ $stats['draft_vouchers'] }}

Quick Actions

Recent Vouchers

@forelse($recentVouchers as $voucher) @empty @endforelse
Voucher No Type Date Amount Status Created By
{{ $voucher->voucher_no }} {{ strtoupper($voucher->voucher_type) }} {{ $voucher->voucher_date->format('d M Y') }} ${{ number_format($voucher->total_amount, 2) }} {{ ucfirst($voucher->status) }} {{ $voucher->creator->name ?? 'N/A' }}
No vouchers found. Create your first voucher!
@endsection