@extends('../layout/' . $layout)
@section('subhead')
Atarud MIS - Charts of Accounts
@endsection
@section('subcontent')
Charts of Accounts
Add
# |
ACCOUNT NAME |
ACCOUNT TYPE |
STATUS |
OPENNING BALANCE
|
ACTIONS |
@foreach ($accounts as $account)
#{{ $loop->index + 1 }} |
{{ $account->name }} |
{{ strToUpper($account->account_type) }} |
|
{{ $account->openning_balance }} |
@if($account->isLocked == 0)
@endif
|
@endforeach
@include('../pages/account/create')
@include('../pages/account/edit')
@include('../pages/account/delete')
@endsection
@section('script')
@endsection