@extends('layouts.admin') @section('title', 'Ledger Entry') @section('page-title', 'Ledger Entry Details') @section('page-subtitle', $entry->reference ?? 'Entry #' . $entry->id) @section('content')
Type

{{ ucfirst($entry->type) }}

Amount

₦{{ number_format($entry->amount) }}

Description

{{ $entry->description }}

Module

{{ $entry->module }}

Reference

{{ $entry->reference ?? '-' }}

Date

{{ $entry->transaction_date->format('d M Y') }}

Recorded By

{{ $entry->recorded_by }}

Created

{{ $entry->created_at->format('d M Y H:i') }}

@endsection