@php $regularFont = mb_convert_encoding(str_replace('\\','/',storage_path('fonts/inter-v19-latin-regular.ttf')),'UTF-8','UTF-8'); $boldFont = mb_convert_encoding(str_replace('\\','/',storage_path('fonts/inter-v19-latin-700.ttf')),'UTF-8','UTF-8'); $invoiceLogo = mb_convert_encoding(str_replace('\\','/',$invoice->invoice_logo),'UTF-8','UTF-8'); @endphp
@if($receipt->logo) @endif
invoice logo

{{ Str::of($receipt->type)->replace('_',' ')->title() }}

Receipt # {{ $receipt->receipt_number }}
Total Paid

${{ number_format(($receipt->total/100),2) }}

Paid At
{{ \Carbon\Carbon::parse($receipt->paid_at)->format('d/m/Y') }}
@foreach ($receipt->invoice->items as $item) @endforeach
DESCRIPTION QTY UNIT PRICE TOTAL
{{ $item->description }} {{ $item->quantity }} ${{ number_format(($item->rate/100),2) }} ${{ number_format(($item->amount/100),2) }}
@foreach($receipt->invoice->taxes as $tax) @endforeach
Sub Total ${{ number_format($receipt->invoice->total_subtotal,2) }}
{{ $tax->name }} ({{ $tax->percentage }}%) ${{ number_format($tax->amount/100, 2) }}
Total ${{ number_format($invoice->invoice->total_amount,2) }}
Amount Paid - ${{ number_format($receipt->amount/100,2) }}
Balance ${{ number_format($invoice->balance/100,2) }}

Billing Details