@extends('layouts.admin') @section('title', $title) @section('content')

{{ $title }}

Manage all {{ strtolower($title) }}.

All Vouchers

@forelse($vouchers as $voucher) @empty @endforelse
Voucher # Date Description Amount Actions
{{ $voucher->voucher_number }} {{ $voucher->voucher_date->format('d M, Y') }} {{ $voucher->description }} Rs. {{ number_format($voucher->amount, 2) }} Edit
@csrf @method('DELETE')
No vouchers found.
{{ $vouchers->links() }}

Add New Voucher

@csrf
@endsection