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