@extends('layouts.admin') @section('page-title') {{ __('Manage Chart of Accounts') }} @endsection @section('breadcrumb')
| {{ __('Code') }} | {{ __('Name') }} | {{ __('Type') }} | {{ __('Parent Account Name') }} | {{ __('Balance') }} | {{ __('Status') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|
| {{ $account->code }} | {{ $account->name }} | {{ !empty($account->subType) ? $account->subType->name : '-' }} | {{ !empty($account->parentAccount) ? $account->parentAccount->name : '-' }} | @if (!empty($totalBalance)) {{ \Auth::user()->priceFormat($totalBalance) }} @else - @endif | @if ($account->is_enabled == 1) {{ __('Enabled') }} @else {{ __('Disabled') }} @endif | @can('edit chart of account') @endcan @can('delete chart of account') @endcan |