@extends('layouts.admin') @section('title', 'Banking Details') @section('content')

Banking Details

{{-- Back Button --}} ⬅ Back to Month {{-- Banking Info --}}

{{ $banking->title ?? 'N/A' }}

Month: {{ $month->name }}

Category: {{ $category->name }}

Created By: {{ $banking->creator->name ?? 'N/A' }}

Amount: {{ $banking->amount ?? 0 }}

Status: {{ $banking->status ?? 'pending' }}

Date: {{ $banking->document_date ? $banking->document_date->format('d M Y') : 'N/A' }}

Created At: {{ $banking->created_at ? $banking->created_at->format('d M Y') : now()->format('d M Y') }}

@endsection