@extends('admin.layouts.app') @section('title', 'Accounting Dashboard') @section('page-title', 'Accounting Dashboard') @section('content')
Total Ledgers
Total Vouchers
Posted
Draft
| 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! | |||||