@extends('layouts.app') @section('title', $client->full_name) @section('page_title', 'Customer Ledger Statement') @section('content') @if($errors->any())
| Date | Reference | Description | Debit (+) | Credit (-) | Balance |
|---|---|---|---|---|---|
| {{ $entry->created_at->format('M d, Y H:i') }} | {{ $entry->reference }} |
{{ $entry->description }} | {{ $entry->debit > 0 ? number_format($entry->debit) : '-' }} | {{ $entry->credit > 0 ? number_format($entry->credit) : '-' }} | {{ number_format($entry->balance) }} UGX |
| No ledger activities registered yet. | |||||
| Invoice # | Date | Total | Paid | Balance Due | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ $inv->invoice_number }}
|
{{ $inv->invoice_date->format('M d, Y') }} | {{ number_format($inv->total_amount) }} UGX | {{ number_format($inv->amount_paid) }} UGX | {{ number_format($inv->balance_due) }} UGX | {{ ucfirst($inv->status) }} | View |
| No invoices generated yet. | ||||||