@extends('layouts.horizontal', ['title' => 'Balance Sheet', 'topbarTitle' => 'Balance Sheet']) @section('css') @endsection @section('content')

Balance Sheet

Filters :

Balance Sheet

{{ $business_name }} Balance Sheet AS on {{ $as_on_date }}
ASSESTS LIABILITIES
@foreach ($account_heads_assest as $main) {{-- MAIN LEVEL --}} @foreach ($main['children'] as $control) {{-- CONTROL LEVEL --}} {{-- --}} @foreach ($control['children'] as $sub) {{-- SUB CONTROL LEVEL --}} @foreach ($sub['children'] as $head) {{-- HEAD LEVEL --}} @endforeach @endforeach {{-- --}} @endforeach @endforeach
Account Head Amount ({{ config('constants.CURRENCY') }})
{{ $main['name'] }}
   {{ $control['name'] }}
         {{ $sub['name'] }}
                —{{ $head['name'] }} {{ number_format($head['closing_balance'], 2) }}
          Total for {{ $sub['name'] }} 0.00
   {{ $control['name'] }}
Total for {{ $main['name'] }} 0.00
@foreach ($account_heads_liabilities as $main) {{-- MAIN LEVEL --}} @foreach ($main['children'] as $control) {{-- CONTROL LEVEL --}} {{-- --}} @foreach ($control['children'] as $sub) {{-- SUB CONTROL LEVEL --}} @foreach ($sub['children'] as $head) {{-- HEAD LEVEL --}} @endforeach @endforeach {{-- --}} @endforeach @endforeach
Account Head Amount ({{ config('constants.CURRENCY') }})
{{ $main['name'] }}
   {{ $control['name'] }}
         {{ $sub['name'] }}
                —{{ $head['name'] }} {{ number_format($head['closing_balance'], 2) }}
          Total for {{ $sub['name'] }} 0.00
   {{ $control['name'] }}
Total for {{ $main['name'] }} 0.00
          Profit and Loss for the period (Net Income) 0.00
Liabilities & Equity 0.00
@endsection @section('scripts') @endsection