@extends('layouts.app') @section('title', 'Invoice Details') @section('content')
Your Trusted Accounting Partner
BILL TO
{{ $invoice->customer->company_name }}
@endif {!! nl2br(e($invoice->customer->billing_address)) !!} @if($invoice->customer->phone)Phone: {{ $invoice->customer->phone }}
@endif| Item & Description | Qty | Rate | Amount |
|---|---|---|---|
| {{ $item->item_name }} | {{ number_format($item->quantity, 2) }} | {{ formatCurrency($item->rate) }} | {{ formatCurrency($item->amount) }} |
{!! nl2br(e($invoice->notes)) !!}
Thank you for choosing Accountify. Please process your payment by the due date.
| Payment # | Date | Mode | Reference | Amount |
|---|---|---|---|---|
| {{ $payment->payment_number }} | {{ \Carbon\Carbon::parse($payment->payment_date)->format('d M Y') }} | {{ $payment->payment_mode }} | {{ $payment->reference_number ?? '—' }} | {{ formatCurrency($payment->amount) }} |
| Total Paid: | {{ formatCurrency($invoice->paid_amount) }} | |||
| Pending Balance: | {{ formatCurrency($invoice->pending_amount) }} | |||