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

Account Heads

@foreach($accountHeads as $accountHead) @endforeach
Code Name Type Level Parent Status Actions
{{ $accountHead->code }} {{ $accountHead->name }} {{ ucfirst($accountHead->type) }} {{ ucfirst($accountHead->level) }} {{ $accountHead->parent ? $accountHead->parent->name : '-' }} {{ $accountHead->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
@if($accountHeads->hasPages()) @endif
@endsection