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

Cheque Preview

@if($cheque->bank->template_image_path)
@php $coords = $cheque->bank->layout_coordinates ?? []; @endphp @if($cheque->cheque_date)
{{ $cheque->cheque_date->format('d-m-Y') }}
@endif
***{{ $cheque->payee->name }}***
@if($amountWords)
{!! $amountWords !!}
@endif @if($cheque->amount)
***{{ number_format($cheque->amount, 2) }}***
@endif @if($cheque->is_ac_payee)
A/C PAYEE ONLY
@endif
@else

No template image configured for this bank.

@endif
Download PDF / Print Back to Dashboard
@endsection