dbfdg @extends('layouts.admin') @section('page-title') {{ __('Trial Balance') }} @endsection @section('breadcrumb') @endsection @push('script-page') @endpush @section('action-btn')
{{ Form::open(['route' => ['trial.balance.export']]) }} {{ Form::close() }}
@endsection @section('content')
@php $authUser = \Auth::user()->creatorId(); $user = App\Models\User::find($authUser); @endphp
{{ __('Account') }}
{{ _('Account Code') }}
{{ __('Debit') }}
{{ __('Credit') }}
@php $totalCredit = 0; $totalDebit = 0; @endphp @foreach ($totalAccounts as $type => $accounts) @endforeach @if ($totalAccounts != [])
{{ 'Total' }}
{{ '' }}
{{ \Auth::user()->priceFormat($totalDebit) }}
{{ \Auth::user()->priceFormat($totalCredit) }}
@endif
@endsection @push('script-page') @endpush