@if (isset($settings['icon']) && is_file('storage/settings/' . $settings['icon']))
@endif
{{ $settings['website_name'] ?? '' }}
{{ $settings['address'] ?? '' }}
{{ $settings['number_1'] ?? '' }}, {{ $settings['number_2'] ?? '' }}
Payment Receipt
Customer Name:
{{ $payment?->cust?->name }}
date:
{{ \Carbon\Carbon::parse($payment->date)->format('d M, Y') }}
| # | Description | Amount |
|---|---|---|
| 1 | Debit payment | {{ $payment?->curr?->symbol }} {{ $payment?->payment }} |
| 2 | Discount | {{ $payment?->curr?->symbol }} {{ $payment?->discount }} |
| Total | {{ $payment?->curr?->symbol }} {{ $payment?->payment + $payment?->discount }} | |
{{--
Amount : {{ $payment?->curr?->symbol }} {{ number_format($payment?->payment,2) }}
--}}
Discount :
{{ $payment?->curr?->symbol }} {{ number_format($payment->discount, 2) }}
{{--
Promotion :
{{ $payment?->curr?->symbol }} {{ number_format($payment->promotion, 2) }}
--}}
{{--
Credit : {{ $payment?->curr?->symbol }}
{{ number_format($payment->credit, 2) }}
--}}
Paid : {{ $payment?->curr?->symbol }}
{{ number_format($payment->payment, 2) }}
{{--
Balance : {{ $item?->curr?->symbol }}
{{ number_format($item->credit, 2) }}
--}}