Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

bill-totals.blade.php 1.3KB

12345678910111213141516171819202122232425262728293031323334
  1. @use('App\Utilities\Currency\CurrencyAccessor')
  2. @php
  3. $data = $this->form->getRawState();
  4. $viewModel = new \App\View\Models\BillTotalViewModel($this->record, $data);
  5. extract($viewModel->buildViewData(), \EXTR_SKIP);
  6. @endphp
  7. <div class="totals-summary w-full pr-14">
  8. <table class="w-full text-right table-fixed">
  9. <tbody>
  10. <tr>
  11. <td class="w-2/3 text-sm px-4 py-2 font-medium leading-6 text-gray-950 dark:text-white">Subtotal:</td>
  12. <td class="w-1/3 text-sm pl-4 py-2 leading-6">{{ $subtotal }}</td>
  13. </tr>
  14. <tr>
  15. <td class="w-2/3 text-sm px-4 py-2 font-medium leading-6 text-gray-950 dark:text-white">Taxes:</td>
  16. <td class="w-1/3 text-sm pl-4 py-2 leading-6">{{ $taxTotal }}</td>
  17. </tr>
  18. <tr>
  19. <td class="w-2/3 text-sm px-4 py-2 font-medium leading-6 text-gray-950 dark:text-white">Discounts:</td>
  20. <td class="w-1/3 text-sm pl-4 py-2 leading-6">({{ $discountTotal }})</td>
  21. </tr>
  22. <tr class="font-semibold">
  23. <td class="w-2/3 text-sm px-4 py-2 font-medium leading-6 text-gray-950 dark:text-white">Total:</td>
  24. <td class="w-1/3 text-sm pl-4 py-2 leading-6">{{ $grandTotal }}</td>
  25. </tr>
  26. </tbody>
  27. </table>
  28. </div>