update marketing
All checks were successful
All checks were successful
This commit is contained in:
@@ -44,17 +44,15 @@
|
||||
<td class="text-start">{{ ucwords(str_replace('_', ' ', $cash_flow->platform)) }}</td>
|
||||
|
||||
@if ($cash_flow->type === 'credit')
|
||||
<td class="text-start text-success">{{ currency_format($cash_flow->amount, currency: business_currency()) }}
|
||||
</td>
|
||||
<td class="text-start text-success">{{ currency_format($cash_flow->amount, currency: business_currency()) }}</td>
|
||||
@else
|
||||
<td class="text-start">{{ currency_format(0, currency: business_currency()) }}</td>
|
||||
<td class="text-start">{{ currency_format(0) }}</td>
|
||||
@endif
|
||||
|
||||
@if ($cash_flow->type === 'debit')
|
||||
<td class="text-start text-danger">{{ currency_format($cash_flow->amount, currency: business_currency()) }}
|
||||
</td>
|
||||
<td class="text-start text-danger">{{ currency_format($cash_flow->amount, currency: business_currency()) }}</td>
|
||||
@else
|
||||
<td class="text-start">{{ currency_format(0, currency: business_currency()) }}</td>
|
||||
<td class="text-start">{{ currency_format(0) }}</td>
|
||||
@endif
|
||||
|
||||
<td class="text-start {{ $runningCash < 0 ? 'text-danger' : 'text-success' }}">
|
||||
@@ -83,10 +81,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>
|
||||
@@ -94,4 +90,4 @@
|
||||
</tr>
|
||||
</tfoot>
|
||||
@endif
|
||||
</table>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user