update marketing
All checks were successful
All checks were successful
This commit is contained in:
@@ -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, currency: business_currency()) }}
|
||||
{{ $cash_flow->type === 'credit' ? currency_format($cash_flow->amount, currency: business_currency()) : currency_format(0) }}
|
||||
</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, currency: business_currency()) }}
|
||||
{{ $cash_flow->type === 'debit' ? currency_format($cash_flow->amount, currency: business_currency()) : currency_format(0) }}
|
||||
</td>
|
||||
|
||||
<td class="text-center {{ $runningCash < 0 ? 'text-danger' : 'text-success' }}">
|
||||
@@ -92,10 +92,8 @@
|
||||
<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>
|
||||
@@ -108,4 +106,4 @@
|
||||
|
||||
<div class="mt-3">
|
||||
{{ $cash_flows->links('vendor.pagination.bootstrap-5') }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user