@extends('layouts.app') @section('title', $accountType->type_name . ' Details') @section('content')

{{ $accountType->type_name }}

Account Type Details

Type Information
Type Name
{{ $accountType->type_name }}
ID
{{ $accountType->account_type_id }}
Description
{{ $accountType->description ?? 'N/A' }}
@if($accountType->subAccountTypes->count() > 0)
Sub Account Types ({{ $accountType->subAccountTypes->count() }})
Add Sub Type
@foreach($accountType->subAccountTypes as $subType) @endforeach
ID Sub Type Name Description Actions
{{ $subType->sub_account_type_id }} {{ $subType->sub_type_name }} {{ $subType->description ?? 'N/A' }}
@else

No sub account types found for this account type.

Add Sub Account Type
@endif
@endsection