@extends('layouts.app') @section('content')

Account Head Details

Code {{ $accountHead->code }}
Name {{ $accountHead->name }}
Type {{ ucfirst($accountHead->type) }}
Parent Account {{ $accountHead->parent ? $accountHead->parent->name : '-' }}
Description {{ $accountHead->description }}
Status {{ $accountHead->status ? 'Active' : 'Inactive' }}
Created At {{ $accountHead->created_at->format('Y-m-d H:i:s') }}
Updated At {{ $accountHead->updated_at->format('Y-m-d H:i:s') }}
@if($accountHead->children->count() > 0)

Sub Accounts

@foreach($accountHead->children as $child) @endforeach
Code Name Type Status Actions
{{ $child->code }} {{ $child->name }} {{ ucfirst($child->type) }} {{ $child->status ? 'Active' : 'Inactive' }}
@endif
@endsection