paid row color updated

This commit is contained in:
batuhanbas 2020-01-13 17:14:18 +03:00
parent 49bc0c2194
commit 1c0b56235e
2 changed files with 6 additions and 6 deletions

View File

@ -387,9 +387,9 @@
@stack($total->code . '_td_end') @stack($total->code . '_td_end')
@else @else
@if ($bill->paid) @if ($bill->paid)
<tr class="text-success"> <tr>
<th>{{ trans('bills.paid') }}:</th> <th class="text-success">{{ trans('bills.paid') }}:</th>
<td class="text-right">- @money($bill->paid, $bill->currency_code, true)</td> <td class="text-success text-right">- @money($bill->paid, $bill->currency_code, true)</td>
</tr> </tr>
@endif @endif
@stack('grand_total_td_start') @stack('grand_total_td_start')

View File

@ -410,9 +410,9 @@
@stack($total->code . '_td_end') @stack($total->code . '_td_end')
@else @else
@if ($invoice->paid) @if ($invoice->paid)
<tr class="text-success"> <tr>
<th>{{ trans('invoices.paid') }}:</th> <th class="text-success">{{ trans('invoices.paid') }}:</th>
<td class="text-right">- @money($invoice->paid, $invoice->currency_code, true)</td> <td class="text-success text-right">- @money($invoice->paid, $invoice->currency_code, true)</td>
</tr> </tr>
@endif @endif
@stack('grand_total_td_start') @stack('grand_total_td_start')