@extends('admin.layouts.app')
@section('title', 'Expense Category Details')
@section('page_title', 'Expense Category Details')
@section('content')
| Name |
{{ $expenseCategory->name }} |
| Description |
{{ $expenseCategory->description ?? '-' }} |
| Status |
@if($expenseCategory->status == 1)
Active
@else
Inactive
@endif
|
@endsection