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

List Of Expenses Category


@foreach ($categories as $index => $category) @endforeach
# Catgory Name Status Action
{{ $index + 1 }} {{ $category->Name }} @if ((int) $category->Status === 1) Active @else Inactive @endif
@csrf @method('DELETE')
@endsection @push('scripts') @endpush