@extends('layouts.app') @section('title','Journal Entries') @section('page_title','Journal Entries') @section('content')
Every posted financial document creates a balanced and immutable journal.
| Voucher | Date | Description | Debit | Status | |
|---|---|---|---|---|---|
| {{ $v->voucher_number }} | {{ $v->posting_date->format('d M Y') }} | {{ $v->description }} | {{ number_format((float)$v->debit_total,2) }} | {{ ucwords(str_replace('_',' ',$s)) }} | Open |
| Journal | Posting Date | Source | Reference | Description | Debit | Credit | |
|---|---|---|---|---|---|---|---|
| {{ $j->journal_number }} | {{ $j->posting_date->format('d M Y') }} | {{ ucwords(str_replace('_',' ',$j->source_module)) }} | {{ $j->reference_number }} | {{ $j->description }} | {{ number_format((float)$j->debit_total,2) }} | {{ number_format((float)$j->credit_total,2) }} | Open |
| No journals found. | |||||||