@extends('layouts.app') @section('title', __('Vouchers')) @section('content')
{{ __('Create Voucher') }}
@csrf
@forelse($vouchers as $voucher) @empty @endforelse
#{{ __('Date') }}{{ __('Type') }}{{ __('Party') }}{{ __('Amount') }}{{ __('Actions') }}
{{ $voucher->voucher_number }} {{ $voucher->voucher_date->format('d M Y') }} {{ ucfirst($voucher->type) }} {{ $voucher->party_name }} {{ number_format($voucher->amount,2) }} {{ $voucher->currency_code }}
@csrf @method('DELETE')
{{ __('No vouchers yet.') }}
{{ $vouchers->links('pagination::bootstrap-5') }}
@endsection