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