@extends('garage.layouts.app') @section('title', 'Purchase invoice vouchers') @section('content')

Purchase invoice vouchers

Invoice: {{ $invoice->bill_number }} ยท {{ $invoice->bill_date }}

Journal posts when status is Received (or partial/paid/overdue): Dr Purchase Account, Cr Vendor.

@forelse($vouchers as $v) @empty @endforelse
Voucher Date Type Status Amount
{{ $v->voucher_no }} {{ $v->voucher_date }} {{ $v->voucher_type }} {{ $v->status }} {{ number_format((float) $v->total_amount, 2) }} Open
No journal voucher for this invoice yet. Save with status Received and a vendor to post.
@endsection