@extends('layouts.app') @section('content')

Cash Payment Voucher No : {{ $paymentOrder->no }}

Date : {{ $paymentOrder->formatted_date }}
@switch($paymentOrder->status) @case(false) Waiting for payment @break @case(true) Complete @break @default @endswitch
@if ($paymentOrder->status) @endif
Order / Notes : {{ $paymentOrder->order }}
PIC : {{ $paymentOrder->createdBy->full_contact }}
Status : @switch($paymentOrder->status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch
Approved By : {{ $paymentOrder->completedBy->full_contact }}
Approved At : {{ $paymentOrder->formatted_completed_at }}
@endsection @section('js') @endsection