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

Sub Account Types Management

Manage sub account categories

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

Start by adding your first sub account type to the system.

Add Sub Account Type
@endif
@endsection