@extends('layouts.app') @section('title', 'Vouchers') @section('breadcrumbs') @endsection @section('content')
Manage journal entries and vouchers
| Voucher # | Date | Type | Narration | Debit | Credit | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $v->voucher_number }} | {{ optional($v->voucher_date)->format('d M Y') }} | {{ ucfirst($v->voucher_type ?? '') }} | {{ Str::limit($v->narration ?? '', 40) }} | {{ number_format($v->total_debit ?? 0, 2) }} | {{ number_format($v->total_credit ?? 0, 2) }} | ||
No vouchers found | |||||||