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

{{ $category->name }} Details

List Edit

{{ $category->name }}

Category Name
Stats

{{ $category->expenses_count ?? 0 }}

Expenses

{{ $category->created_at?->diffForHumans() ?? 'Unknown' }}

Created
Delete Category

This action cannot be undone. This will permanently delete the category and all related data.

@csrf @method('DELETE')
@endsection