@extends('layouts.master') @section('page_title', 'Edit Account') @section('content')
| Code | Name | Current Balance | Status |
|---|---|---|---|
| {{ $child->code }} | {{ $child->name }} | {{ number_format($child->current_balance ?? 0, 2) }} | @if($child->is_active) Active @else Inactive @endif |
| ... and {{ $account->children->count() - 5 }} more sub-accounts | |||
Current Balance: {{ number_format($account->current_balance, 2) }}