@extends('layouts.business.pdf.pdf_layout') @section('pdf_title')
| {{ __('Bill To') }} | : {{ $party->name ?? 'Guest' }} |
| {{ __('Mobile') }} | : {{ $party->phone ?? 'Guest' }} |
| {{ __('Receipt') }} | : {{ $party->dueCollect->invoiceNumber ?? '' }} |
| {{ __('Date') }} | : {{ formatted_date($party->dueCollect->paymentDate ?? '') }} |
| {{ __('Collected By') }} | : {{ $party->dueCollect->business->companyName ?? '' }} |
| {{ __('SL') }} | {{ __('Total Due') }} | {{ __('Payment Amount') }} | {{ __('Remaining Due') }} |
|---|---|---|---|
| {{ $loop->iteration }} | {{ currency_format($collect->totalDue ?? 0, currency: business_currency()) }} | {{ currency_format($collect->payDueAmount ?? 0, currency: business_currency()) }} | {{ currency_format($collect->dueAmountAfterPay ?? 0, currency: business_currency()) }} |
| {{ __('Payable Amount') }} | : | {{ $total_due }} |
| {{ __('Received Amount') }} | : | {{ $total_pay_amount }} |
| {{ __('Due Amount') }} | : | {{ $total_due_after_pay }} |