{{ $company['address'] }}
📞 {{ $company['phone'] }} | ✉️ {{ $company['email'] }}
@if($company['gst'])GST: {{ $company['gst'] }}
@endif{{ $company['address'] }}
📞 {{ $company['phone'] }}
✉️ {{ $company['email'] }}
{{ $customer->billing_street }}
@endif @php $billingCity = $customer->billing_city ?? ''; $billingState = $customer->billing_state ?? ''; $billingZip = $customer->billing_zip_code ?? ''; $billingCountry = $customer->billing_country ?? ''; $cityLine = trim("$billingCity, $billingState $billingZip"); @endphp @if($cityLine != ', '){{ $cityLine }}
@endif @if($billingCountry){{ $billingCountry }}
@endif @if($customer->phone)📞 {{ $customer->phone }}
@endif @if($customer->email)✉️ {{ $customer->email }}
@endif @elseNo customer details available
@endif| Invoice Number | Invoice Date | Invoice Amount | Payment Amount | Amount Due |
|---|---|---|---|---|
| {{ $payment->invoice->invoice_number }} | {{ $payment->invoice->date->format('d-m-Y') }} | ₹{{ number_format($payment->invoice->total, 2) }} | ₹{{ number_format($payment->amount, 2) }} | ₹{{ number_format($payment->invoice->amount_due, 2) }} |
{{ $payment->notes }}