@extends('layouts.master') @section('css') @endsection @section('title') {{ __('home.general_budget') }} @endsection @section('page-header')
@endsection @section('content') @if (count($errors) > 0)| اسم الحساب | الرصيد |
|---|---|
| {{ $account->name }} | @php $balance = $account->current_balance ?? 0; $totalAssets += $balance; @endphp {{ number_format($balance, 2) }} |
| لا توجد أصول مضافة | |
| إجمالي الأصول | {{ number_format($totalAssets, 2) }} |
| الخصوم | |
|---|---|
| اسم الحساب | الرصيد |
| {{ $account->name }} | @php $balance = $account->current_balance ?? 0; $totalLiabilities += $balance; @endphp {{ number_format($balance, 2) }} |
| لا توجد خصوم مضافة | |
| إجمالي الخصوم | {{ number_format($totalLiabilities, 2) }} |
| حقوق الملكية | |
|---|---|
| اسم الحساب | الرصيد |
| {{ $account->name }} | @php $balance = $account->current_balance ?? 0; $totalEquity += $balance; @endphp {{ number_format($balance, 2) }} |
| لا توجد حسابات حقوق ملكية مضافة | |
| إجمالي حقوق الملكية | {{ number_format($totalEquity, 2) }} |
| إجمالي الخصوم وحقوق الملكية | {{ number_format($totalLiabilities + $totalEquity, 2) }} |