@extends('layouts.app') @section('title', 'Account Types') @section('content')

Account Types Management

Manage account categories

Account Types List
@if(session('success')) @endif @if($accountTypes->count() > 0)
@foreach($accountTypes as $accountType) @endforeach
ID Type Name Description Sub Types Count Actions
{{ $accountType->account_type_id }} {{ $accountType->type_name }} {{ $accountType->description ?? 'N/A' }} {{ $accountType->sub_account_types_count ?? 0 }}
@csrf @method('DELETE')
@else
No Account Types Found

Start by adding your first account type to the system.

Add Account Type
@endif
@endsection