@extends('layouts.app') @section('title','General Ledger') @section('page_title','General Ledger') @section('content')

General Ledger

Drill down to every posted journal line.

@forelse($lines as $l)@empty@endforelse
DateJournalAccountPartyDescriptionDebitCredit
{{ $l->journalEntry->posting_date->format('d M Y') }}{{ $l->journalEntry->journal_number }}{{ $l->account?->code }} - {{ $l->account?->name }}{{ $l->party?->legal_name }} {{ $l->party_ledger }}{{ $l->description }}{{ number_format((float)$l->debit,2) }}{{ number_format((float)$l->credit,2) }}
No transactions.
{{ $lines->links() }}
@endsection