@extends('layouts.admin') @section('title', 'Journal Entries') @section('page-title', 'Journal Entries') @section('header-actions') add New Entry @endsection @section('content')
| Entry # | Date | Description | Debit | Credit | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $entry->entry_number }} | {{ $entry->entry_date->format('M d, Y') }} | {{ Str::limit($entry->description, 50) }} | {{ number_format($entry->total_debit, 2) }} | {{ number_format($entry->total_credit, 2) }} | {{ ucfirst($entry->status) }} |
visibility
@if($entry->status === 'draft')
@endif
@if($entry->status === 'posted' && !$entry->is_reversed)
@endif
|
|
book
No journal entries found |
||||||