@extends('core::layouts.master') @section('title') {{ $chart_of_account->name }} @endsection @section('content')
{{ $chart_of_account->name }}
{{ trans_choice('accounting::general.gl_code',2) }} {{$chart_of_account->gl_code}}
{{ trans_choice('core::general.account',1) }} {{ trans_choice('core::general.type',1) }} @if($chart_of_account->account_type=='asset') {{trans_choice('accounting::general.asset',1)}} @endif @if($chart_of_account->account_type=='expense') {{trans_choice('accounting::general.expense',1)}} @endif @if($chart_of_account->account_type=='equity') {{trans_choice('accounting::general.equity',1)}} @endif @if($chart_of_account->account_type=='liability') {{trans_choice('accounting::general.liability',1)}} @endif @if($chart_of_account->account_type=='income') {{trans_choice('accounting::general.income',1)}} @endif
{{ trans_choice('accounting::general.manual_entries_allowed',1) }} @if($chart_of_account->allow_manual==1) {{trans_choice('core::general.yes',1)}} @else {{trans_choice('core::general.no',1)}} @endif
{{ trans_choice('core::general.active',1) }} @if($chart_of_account->active==1) {{ trans_choice('core::general.yes',1) }} @else {{ trans_choice('core::general.no',1) }} @endif
{{ trans_choice('core::general.note',2) }} {!! $chart_of_account->notes !!}
@endsection