Edit balance_sheet.php via Editor

This commit is contained in:
Flatlogic Bot 2026-03-27 18:00:55 +00:00
parent 7828e2ad4e
commit cf34144fdb

View File

@ -21,7 +21,7 @@ $balance_sheet = get_balance_sheet();
<div class="card bg-primary text-white text-center mb-3">
<div class="card-body">
<h5>الأصول</h5>
<h3><?= number_format($balance_sheet['أصول'], 2) ?></h3>
<h3><?= number_format($balance_sheet['أصول'], 3) ?></h3>
</div>
</div>
</div>
@ -29,7 +29,7 @@ $balance_sheet = get_balance_sheet();
<div class="card bg-danger text-white text-center mb-3">
<div class="card-body">
<h5>الخصوم</h5>
<h3><?= number_format($balance_sheet['خصوم'], 2) ?></h3>
<h3><?= number_format($balance_sheet['خصوم'], 3) ?></h3>
</div>
</div>
</div>
@ -37,7 +37,7 @@ $balance_sheet = get_balance_sheet();
<div class="card bg-success text-white text-center mb-3">
<div class="card-body">
<h5>حقوق الملكية</h5>
<h3><?= number_format($balance_sheet['حقوق ملكية'], 2) ?></h3>
<h3><?= number_format($balance_sheet['حقوق ملكية'], 3) ?></h3>
</div>
</div>
</div>