@extends('layouts.app') @section('title') All Expense Categories @stop @section('breadcrumb') @stop @section('content')
@permission('create-department')   Add new Category @endpermission

All Expense Categories

@foreach($allExpenseCategories as $category) @if($category->status == true) @else @endif @endforeach
# Name Bill Amt. Paid Amt. Balance Status Action
{{$count++}} {{$category->name}} {{number_format($billAmount[$category->id])}} {{number_format($paidAmount[$category->id])}} {{number_format($billAmount[$category->id] - $paidAmount[$category->id])}}ActiveInActive @permission('edit-expense') @endpermission @permission('delete-expense') @endpermission
@stop @section('js') @stop