123456789101112131415161718192021222324252627282930313233343536 |
- <table class="w-full table-fixed divide-y divide-gray-200 dark:divide-white/5">
- <colgroup>
- <col span="1" style="width: 65%;">
- <col span="1" style="width: 35%;">
- </colgroup>
- <x-company.tables.header :headers="$report->getSummaryHeaders()"
- :alignment-class="[$report, 'getAlignmentClass']"/>
- @foreach($report->getSummaryCategories() as $accountCategory)
- <tbody class="divide-y divide-gray-200 whitespace-nowrap dark:divide-white/5">
- <x-company.tables.category-header :category-headers="$accountCategory->header"
- :alignment-class="[$report, 'getAlignmentClass']"/>
- @foreach($accountCategory->types as $accountType)
- <tr>
- @foreach($accountType->summary as $accountTypeSummaryIndex => $accountTypeSummaryCell)
- <x-company.tables.cell :alignment-class="$report->getAlignmentClass($accountTypeSummaryIndex)">
- {{ $accountTypeSummaryCell }}
- </x-company.tables.cell>
- @endforeach
- </tr>
- @endforeach
- <tr>
- @foreach($accountCategory->summary as $accountCategorySummaryIndex => $accountCategorySummaryCell)
- <x-company.tables.cell :alignment-class="$report->getAlignmentClass($accountCategorySummaryIndex)"
- bold="true">
- {{ $accountCategorySummaryCell }}
- </x-company.tables.cell>
- @endforeach
- </tr>
- <tr>
- <td colspan="{{ count($report->getSummaryHeaders()) }}">
- <div class="min-h-12"></div>
- </td>
- </tr>
- </tbody>
- @endforeach
- </table>
|