This commit is contained in:
denisdulici
2017-10-12 18:06:40 +03:00
parent 7278e9a061
commit fc9e62dc8d
5 changed files with 198 additions and 97 deletions

View File

@ -11,7 +11,7 @@ return [
'currencies_gbp' => 'British Pound',
'currencies_try' => 'Turkish Lira',
'taxes_exempt' => 'Tax Exempt',
'taxes_normal' => 'Normal',
'taxes_normal' => 'Normal Tax',
'taxes_sales' => 'Sales Tax',
];

View File

@ -92,7 +92,7 @@
</td>
<td class="text-center">{{ $item->quantity }}</td>
<td class="text-right">@money($item->price, $bill->currency_code, true)</td>
<td class="text-right">@money($item->total - $item->tax, $bill->currency_code, true)</td>
<td class="text-right">@money($item->total, $bill->currency_code, true)</td>
</tr>
@endforeach
</tbody>

View File

@ -92,7 +92,7 @@
</td>
<td class="text-center">{{ $item->quantity }}</td>
<td class="text-right">@money($item->price, $invoice->currency_code, true)</td>
<td class="text-right">@money($item->total - $item->tax, $invoice->currency_code, true)</td>
<td class="text-right">@money($item->total, $invoice->currency_code, true)</td>
</tr>
@endforeach
</tbody>