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

Purchase order vouchers

PO: {{ $purchaseOrder->purchase_order_number }} ยท {{ $purchaseOrder->purchase_order_date }}
@forelse($vouchers as $v) @empty @endforelse
Voucher Date Type Status Amount Action
{{ $v->voucher_no }} {{ $v->voucher_date }} {{ $v->voucher_type }} {{ $v->status }} PKR {{ number_format((float) $v->total_amount, 2) }} Open
No vouchers linked to this purchase order.
@endsection