@extends('layouts.master') @section('css') @endsection @section('title') {{ __('home.general_budget') }} @endsection @section('page-header') @endsection @section('content') @if (count($errors) > 0)
خطا
@endif @if(isset($assets))

{{ Namear ?? '' }}

{{ describtionar ?? '' }}

{{ STar ?? '' }}

{{ Taxar ?? '' }}

@php $logo = camplogo ?? ''; @endphp @if($logo) logo @endif
الميزانية العامة
General Budget

{{ Nameen ?? '' }}

{{ describtionen ?? '' }}

{{ STen ?? '' }}

{{ Taxen ?? '' }}

تقرير الميزانية العامة
الأصول
@php $totalAssets = 0; @endphp @forelse($assets as $account) @empty @endforelse
اسم الحساب الرصيد
{{ $account->name }} @php $balance = $account->current_balance ?? 0; $totalAssets += $balance; @endphp {{ number_format($balance, 2) }}
لا توجد أصول مضافة
إجمالي الأصول {{ number_format($totalAssets, 2) }}
الخصوم وحقوق الملكية
@php $totalLiabilities = 0; @endphp @forelse($liabilities as $account) @empty @endforelse
الخصوم
اسم الحساب الرصيد
{{ $account->name }} @php $balance = $account->current_balance ?? 0; $totalLiabilities += $balance; @endphp {{ number_format($balance, 2) }}
لا توجد خصوم مضافة
إجمالي الخصوم {{ number_format($totalLiabilities, 2) }}
@php $totalEquity = 0; @endphp @forelse($equity as $account) @empty @endforelse
حقوق الملكية
اسم الحساب الرصيد
{{ $account->name }} @php $balance = $account->current_balance ?? 0; $totalEquity += $balance; @endphp {{ number_format($balance, 2) }}
لا توجد حسابات حقوق ملكية مضافة
إجمالي حقوق الملكية {{ number_format($totalEquity, 2) }}
إجمالي الخصوم وحقوق الملكية {{ number_format($totalLiabilities + $totalEquity, 2) }}
توزيع الميزانية العامة (رسم بياني)
@endif @endsection @section('js') @endsection