You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

trial-balance.blade.php 4.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <x-filament-panels::page>
  2. <div class="flex flex-col gap-y-6">
  3. <x-filament-tables::container>
  4. <div class="p-6 divide-y divide-gray-200 dark:divide-white/5">
  5. <form wire:submit.prevent="loadReportData" class="w-full">
  6. <div class="flex flex-col md:flex-row items-end justify-center gap-4 md:gap-6">
  7. <div class="flex-grow">
  8. {{ $this->form }}
  9. </div>
  10. <x-filament::button type="submit" class="mt-4 md:mt-0">
  11. Update Report
  12. </x-filament::button>
  13. </div>
  14. </form>
  15. </div>
  16. <div class="divide-y divide-gray-200 overflow-x-auto dark:divide-white/10 dark:border-t-white/10">
  17. <table class="w-full table-auto divide-y divide-gray-200 text-start dark:divide-white/5">
  18. <thead class="divide-y divide-gray-200 dark:divide-white/5">
  19. <tr class="bg-gray-50 dark:bg-white/5">
  20. <x-filament-tables::header-cell>Account</x-filament-tables::header-cell>
  21. <x-filament-tables::header-cell alignment="end">Debit</x-filament-tables::header-cell>
  22. <x-filament-tables::header-cell alignment="end">Credit</x-filament-tables::header-cell>
  23. </tr>
  24. </thead>
  25. @foreach($trialBalanceReport->categories as $accountCategoryName => $accountCategory)
  26. <tbody class="divide-y divide-gray-200 whitespace-nowrap dark:divide-white/5">
  27. <tr class="bg-gray-50 dark:bg-white/5">
  28. <x-filament-tables::cell colspan="3">
  29. <div class="px-3 py-2 text-sm font-medium text-gray-950 dark:text-white">{{ $accountCategoryName }}</div>
  30. </x-filament-tables::cell>
  31. </tr>
  32. @foreach($accountCategory->accounts as $account)
  33. <x-filament-tables::row>
  34. <x-filament-tables::cell><div class="px-3 py-4 text-sm leading-6 text-gray-950 dark:text-white">{{ $account->accountName }}</div></x-filament-tables::cell>
  35. <x-filament-tables::cell class="text-right"><div class="px-3 py-4 text-sm leading-6 text-gray-950 dark:text-white">{{ $account->balance->debitBalance ?? '' }}</div></x-filament-tables::cell>
  36. <x-filament-tables::cell class="text-right"><div class="px-3 py-4 text-sm leading-6 text-gray-950 dark:text-white">{{ $account->balance->creditBalance ?? '' }}</div></x-filament-tables::cell>
  37. </x-filament-tables::row>
  38. @endforeach
  39. <x-filament-tables::row>
  40. <x-filament-tables::cell><div class="px-3 py-2 text-sm leading-6 font-semibold text-gray-950 dark:text-white">Total {{ $accountCategoryName }}</div></x-filament-tables::cell>
  41. <x-filament-tables::cell class="text-right"><div class="px-3 py-2 text-sm leading-6 font-semibold text-gray-950 dark:text-white">{{ $accountCategory->summary->debitBalance }}</div></x-filament-tables::cell>
  42. <x-filament-tables::cell class="text-right"><div class="px-3 py-2 text-sm leading-6 font-semibold text-gray-950 dark:text-white">{{ $accountCategory->summary->creditBalance }}</div></x-filament-tables::cell>
  43. </x-filament-tables::row>
  44. <x-filament-tables::row>
  45. <x-filament-tables::cell colspan="3">
  46. <div class="px-3 py-2 invisible">Hidden Text</div>
  47. </x-filament-tables::cell>
  48. </x-filament-tables::row>
  49. </tbody>
  50. @endforeach
  51. <tfoot>
  52. <tr class="bg-gray-50 dark:bg-white/5">
  53. <x-filament-tables::cell><div class="px-3 py-2 text-sm leading-6 font-semibold text-gray-950 dark:text-white">Total for all accounts</div></x-filament-tables::cell>
  54. <x-filament-tables::cell class="text-right"><div class="px-3 py-2 text-sm leading-6 font-semibold text-gray-950 dark:text-white">{{ $trialBalanceReport->overallTotal->debitBalance }}</div></x-filament-tables::cell>
  55. <x-filament-tables::cell class="text-right"><div class="px-3 py-2 text-sm leading-6 font-semibold text-gray-950 dark:text-white">{{ $trialBalanceReport->overallTotal->creditBalance }}</div></x-filament-tables::cell>
  56. </tr>
  57. </tfoot>
  58. </table>
  59. </div>
  60. <div class="es-table__footer-ctn border-t border-gray-200"></div>
  61. </x-filament-tables::container>
  62. </div>
  63. </x-filament-panels::page>