@extends('layouts.app') @section('content') @include('pages.cash-payment-voucher.partials.menu')

Cash Payment Voucher

Page for Cash Payment Voucher

@foreach ($cashPaymentVouchers as $cashPaymentVoucher) @endforeach
No Date Reff Type Reff No Amount Status Action
{{ $cashPaymentVoucher->id }} {{ $cashPaymentVoucher->no }} {{ $cashPaymentVoucher->date }} @switch($cashPaymentVoucher->reff_type) @case('invoice') Invoice PO Supplier @break @case('other') Other @break @default @endswitch {{ $cashPaymentVoucher->reff_no }} {{ number_format($cashPaymentVoucher->amount, 0) }} @switch($cashPaymentVoucher->is_created) @case(false) Not complete @break @case(true) Completed @break @default @endswitch
    @switch($cashPaymentVoucher->is_created) @case('') @break @default
  • @endswitch
@endsection @section('js') @endsection