{{-- # ────────────── lee_gwena ────────────── # Code by: ashley_gwena # Created: 2026-03-31 # Notes: Subaccounts index scoped to a parent GL account # ─────────────────────────────────────── --}} @extends('layouts.master') @section('title', 'Subaccounts') @section('content')

Subaccounts

Parent: {{ $parent->account_code }} — {{ $parent->account_name }}

{{ isset($accounts) ? count($accounts) : 0 }}
Records
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
Sub Code
Full Code
Name
Status
Actions
@forelse($accounts as $account)
{{ $account->sub_code }}
{{ $account->full_code }}
{{ $account->account_name }}
{{ $account->is_active ? 'Active' : 'Inactive' }}
View Edit
@csrf @method('DELETE')
@empty
No subaccounts found.
@endforelse
@endsection