@extends('layouts.master') @section('title', 'Balance Sheet Entry | Alboosh - Timeless authenticity, born of the desert') @section('title-topbar', __('basic.balance sheet')) @section('css') @endsection @section('content')
{{ __('basic.dashboard') }} | {{ __('basic.balance sheet') }}
{{ __('basic.new entry') }} {{ __('basic.print') }} {{ __('basic.search filter') }}
{{ __('basic.balance sheet') }}
{{ $company_name }}
{{ __('basic.from') }} {{ $date_from }} {{ __('basic.to') }} {{ $date_to }}
{{ __('basic.account') }} {{ __('basic.total amount') }}
@php $total_all_balance = 0; @endphp @foreach ($main_account as $item)
{{$item->name }}
@php $total_amount = 0; @endphp @foreach ($item->childs as $item_acc) @if(count($item_acc->childs)) @include('invoice/acc/reports.manageChild',['childs' => $item_acc->childs]) @endif @endforeach
{{ $item_acc->name }}
{{ __('basic.total') }} @php $total_all_balance += get_total_acc_childs($item->id); @endphp {{ get_total_acc_childs($item->id) }}
@endforeach
{{ __('basic.total') }} {{ $total_all_balance }}
@endsection @section('js') {{-- data table --}} @endsection