Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

balance-sheet-summary.blade.php 1.7KB

123456789101112131415161718192021222324252627282930313233343536
  1. <table class="w-full min-w-[50rem] divide-y divide-gray-200 dark:divide-white/5">
  2. <colgroup>
  3. <col span="1" style="width: 65%;">
  4. <col span="1" style="width: 35%;">
  5. </colgroup>
  6. <x-company.tables.header :headers="$report->getSummaryHeaders()"
  7. :alignment-class="[$report, 'getAlignmentClass']"/>
  8. @foreach($report->getSummaryCategories() as $accountCategory)
  9. <tbody class="divide-y divide-gray-200 whitespace-nowrap dark:divide-white/5">
  10. <x-company.tables.category-header :category-headers="$accountCategory->header"
  11. :alignment-class="[$report, 'getAlignmentClass']"/>
  12. @foreach($accountCategory->types as $accountType)
  13. <tr>
  14. @foreach($accountType->summary as $accountTypeSummaryIndex => $accountTypeSummaryCell)
  15. <x-company.tables.cell :alignment-class="$report->getAlignmentClass($accountTypeSummaryIndex)">
  16. {{ $accountTypeSummaryCell }}
  17. </x-company.tables.cell>
  18. @endforeach
  19. </tr>
  20. @endforeach
  21. <tr>
  22. @foreach($accountCategory->summary as $accountCategorySummaryIndex => $accountCategorySummaryCell)
  23. <x-company.tables.cell :alignment-class="$report->getAlignmentClass($accountCategorySummaryIndex)"
  24. bold="true">
  25. {{ $accountCategorySummaryCell }}
  26. </x-company.tables.cell>
  27. @endforeach
  28. </tr>
  29. <tr>
  30. <td colspan="{{ count($report->getSummaryHeaders()) }}">
  31. <div class="min-h-12"></div>
  32. </td>
  33. </tr>
  34. </tbody>
  35. @endforeach
  36. </table>