@extends('layouts.master') @section('title', 'Client Journal Report - ') @section('content')
Track client-related transactions and payments
| Date | Client Code | Client Name | Description | Debit | Credit | Status | Currency |
|---|---|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($entry->date)->format('M d, Y') }} | {{ $entry->client_code ?? ($entry->clientAccount->client_code ?? 'N/A') }} | {{ $entry->client_name ?? ($entry->clientAccount->client_account ?? 'N/A') }} | {{ $entry->narration }} | {{ $debit > 0 ? '$' . number_format($debit, 2) : '-' }} | {{ $credit > 0 ? '$' . number_format($credit, 2) : '-' }} | {{ $entry->status ?? 'pending' }} | {{ $entry->currency_name ?? ($entry->currency->currency_name ?? 'N/A') }} |
No client journal entries match your selected criteria.