Rentor

RENT INVOICE

#{{ $invoice_number }}
Date: {{ $generated_date->format('Y-m-d') }}
Tenant: {{ $tenant->full_name }}
Property: {{ $property->name ?? 'N/A' }}
Lease ID: #{{ $lease->id }}

Invoice Details

@if(isset($invoice_month_name)) Month: {{ $invoice_month_name }}
@endif Due Date: {{ $due_date->format('Y-m-d') }}
Type: {{ ucfirst($invoice_type) }}
@if(!empty($invoice_notes)) Notes: {{ $invoice_notes }}
@endif

Financial Summary

Monthly Rent {{ number_format($financial['monthly_rent'], 2) }}
Expected Total {{ number_format($financial['expected_total'], 2) }}
Total Paid {{ number_format($financial['total_paid'], 2) }}
Balance Due {{ number_format($financial['balance'], 2) }}
@if(!empty($payment_history))

Payment History

@foreach($payment_history as $payment) @endforeach
Date Amount
{{ $payment->payment_date->format('Y-m-d') }} {{ number_format($payment->amount, 2) }}
@endif