@extends('layouts.app') @section('title', 'General Ledger') @section('content') @include('super-admin.partials.nav') Finance home
@forelse ($lines as $line) @empty @endforelse
Date Account Debit Credit Memo Reference
{{ $line->journalEntry?->entry_date }} {{ $line->account?->code }} — {{ $line->account?->name }} {{ number_format((float) $line->debit, 2) }} {{ number_format((float) $line->credit, 2) }} {{ $line->memo }} {{ $line->journalEntry?->reference }}
No ledger lines in range.
{{ $lines->links() }}
@endsection