@extends('layouts.app') @section('title', __('Customer Ledger').' - '.$customer->name) @section('content')
| {{ __('Date') }} | {{ __('Description') }} | {{ __('Reference') }} | {{ __('Debit') }} | {{ __('Credit') }} | {{ __('Balance') }} |
|---|---|---|---|---|---|
| {{ \App\Support\DualDate::format($entry['date'], 'd M Y') }} | {{ $entry['description'] }} | {{ $entry['reference'] }} | {{ $entry['debit'] ? number_format($entry['debit'], 2) : '-' }} | {{ $entry['credit'] ? number_format($entry['credit'], 2) : '-' }} | {{ number_format($balance, 2) }} |
{{ $appSettings['report_footer'] }}
@endif @endsection