{{ __('Ledger Statement') }} - {{ $ledger->party_name }} {{ __('Back to Ledgers') }}
{{ __('Total Debit') }} {{ number_format((float) $debitTotal, 2) }}
{{ __('Total Credit') }} {{ number_format((float) $creditTotal, 2) }}
{{ __('Calculated Balance') }} {{ number_format((float) $calculatedBalance, 2) }}
@forelse ($entries as $entry) @empty @endforelse
{{ __('Date') }} {{ __('Type') }} {{ __('Amount') }} {{ __('Description') }}
{{ $entry->posted_at?->format('Y-m-d H:i') }} {{ strtoupper($entry->entry_type->value) }} {{ number_format((float) $entry->amount, 2) }} {{ $entry->description }}
{{ __('No entries found.') }}