@extends('layouts.master') @section('page_title', 'Vouchers') @section('content')
Create Voucher
@forelse($vouchers ?? [] as $voucher) @empty @endforelse
ID Date Reference Amount Actions
{{ $voucher->id }} {{ $voucher->date ?? $voucher->created_at->toDateString() }} {{ $voucher->reference ?? '-' }} {{ isset($voucher->amount) ? number_format($voucher->amount, 2) : '-' }} View Edit
No vouchers found.
@endsection