@extends('layouts.admin') @section('content')
| Description: | {{ $expense->description }} |
|---|---|
| Category: | {{ ucfirst($expense->category) }} |
| Event: | @if($expense->event) {{ $expense->event->name }} @else N/A @endif |
| Date: | {{ $expense->date->format('d M, Y') }} |
| Paid By: | {{ $expense->paid_by }} |
| Amount: | KES {{ number_format($expense->amount, 2) }} |
|---|---|
| Created By: | {{ $expense->creator->name ?? 'N/A' }} |
| Updated By: | {{ $expense->updater->name ?? 'N/A' }} |
| Created At: | {{ $expense->created_at->format('d M, Y H:i') }} |
| Last Updated: | {{ $expense->updated_at->format('d M, Y H:i') }} |
{{ $expense->notes }}
Delete this expense permanently. This action cannot be undone.