@extends('layout.main') @section('content')

Income Categories

@if (Auth::user()->can('income-category-create')) Add Income Category @endif

Categories List

@if (Auth::user()->can('income-category-edit') || Auth::user()->can('income-category-delete')) @endif @unless (count($incomeType) == 0) @foreach ($incomeType as $type)
Income Category Name DescriptionActions

{{ $type->name }}

{{ $type->description }}

{{--

{{ $type->phone }}

--}}
@if (Auth::user()->can('income-category-edit')) @endif @if (Auth::user()->can('income-category-delete'))
@csrf @method('DELETE')