@extends('backend.layouts.app')
@section('backend_title', 'Admin Brand List')
@section('backend_content')
| Sl No. |
Name of Income |
Action |
@isset($incometList)
@forelse ($incometList as $index=> $item)
|
{{ $index + 1 }}
|
{{ $item->head_of_income }}
|
@can('edit division')
@endcan
@can('delete division')
@endcan
|
@empty
| Data Not Found!! |
@endforelse
@endisset
| Name |
Status |
Action |
@endsection