finishing to dev
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m41s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 42s
Build, Push and Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-05-14 22:50:44 +07:00
parent 2fabdf8fc9
commit 8307b9e66d
212 changed files with 2451 additions and 4493 deletions

View File

@@ -60,11 +60,11 @@
<td class="text-start d-print-none">{{ ucwords(str_replace('_', ' ', $cash_flow->platform)) }}</td>
<td class="text-center {{ $cash_flow->type === 'credit' ? 'text-success' : '' }}">
{{ $cash_flow->type === 'credit' ? currency_format($cash_flow->amount, currency: business_currency()) : currency_format(0) }}
{{ $cash_flow->type === 'credit' ? currency_format($cash_flow->amount, currency: business_currency()) : currency_format(0, currency: business_currency()) }}
</td>
<td class="text-center {{ $cash_flow->type === 'debit' ? 'text-danger' : '' }}">
{{ $cash_flow->type === 'debit' ? currency_format($cash_flow->amount, currency: business_currency()) : currency_format(0) }}
{{ $cash_flow->type === 'debit' ? currency_format($cash_flow->amount, currency: business_currency()) : currency_format(0, currency: business_currency()) }}
</td>
<td class="text-center {{ $runningCash < 0 ? 'text-danger' : 'text-success' }}">
@@ -92,8 +92,10 @@
<td class="d-print-none"></td>
<td></td>
<td class="d-print-none text-start"></td>
<td class="text-center text-success">{{ currency_format($page_cash_in, currency: business_currency()) }}</td>
<td class="text-center text-danger">{{ currency_format($page_cash_out, currency: business_currency()) }}</td>
<td class="text-center text-success">{{ currency_format($page_cash_in, currency: business_currency()) }}
</td>
<td class="text-center text-danger">{{ currency_format($page_cash_out, currency: business_currency()) }}
</td>
<td class="text-center {{ $page_running_cash < 0 ? 'text-danger' : 'text-success' }}">
{{ currency_format($page_running_cash, currency: business_currency()) }}
</td>
@@ -106,4 +108,4 @@
<div class="mt-3">
{{ $cash_flows->links('vendor.pagination.bootstrap-5') }}
</div>
</div>