@extends('admin.layouts.app')
@section('title', 'Expenses Category')
@section('content')
List Of Expenses Category
| # |
Catgory Name |
Status |
Action |
@foreach ($categories as $index => $category)
| {{ $index + 1 }} |
{{ $category->Name }} |
@if ((int) $category->Status === 1)
Active
@else
Inactive
@endif
|
|
@endforeach
@endsection
@push('scripts')
@endpush