| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 | 
							- @extends('components.company.reports.layout')
 - 
 - @section('content')
 -     <div class="header">
 -         <div class="title">{{ $report->getTitle() }}</div>
 -         <div class="company-name">{{ $company->name }}</div>
 -         @if($startDate && $endDate)
 -             <div class="date-range">Date Range: {{ $startDate }} to {{ $endDate }}</div>
 -         @else
 -             <div class="date-range">As of {{ $endDate }}</div>
 -         @endif
 -     </div>
 -     <table class="table-class">
 -         <colgroup>
 -             @if(array_key_exists('account_code', $report->getHeaders()))
 -                 <col span="1" style="width: 20%;">
 -                 <col span="1" style="width: 55%;">
 -                 <col span="1" style="width: 25%;">
 -             @else
 -                 <col span="1" style="width: 65%;">
 -                 <col span="1" style="width: 35%;">
 -             @endif
 -         </colgroup>
 -         <thead class="table-head">
 -         <tr>
 -             @foreach($report->getHeaders() as $index => $header)
 -                 <th class="{{ $report->getAlignmentClass($index) }}">
 -                     {{ $header }}
 -                 </th>
 -             @endforeach
 -         </tr>
 -         </thead>
 -         @foreach($report->getCategories() as $category)
 -             <tbody>
 -             <tr class="category-header-row">
 -                 @foreach($category->header as $index => $header)
 -                     <td class="{{ $report->getAlignmentClass($index) }}">
 -                         {{ $header }}
 -                     </td>
 -                 @endforeach
 -             </tr>
 -             @foreach($category->data as $account)
 -                 <tr>
 -                     @foreach($account as $index => $cell)
 -                         <td @class([
 -                             $report->getAlignmentClass($index),
 -                             'whitespace-normal' => $index === 'account_name',
 -                             'whitespace-nowrap' => $index !== 'account_name',
 -                         ])
 -                         >
 -                             @if(is_array($cell) && isset($cell['name']))
 -                                 {{ $cell['name'] }}
 -                             @else
 -                                 {{ $cell }}
 -                             @endif
 -                         </td>
 -                     @endforeach
 -                 </tr>
 -             @endforeach
 - 
 -             <!-- Category Types -->
 -             @foreach($category->types ?? [] as $type)
 -                 <!-- Type Header -->
 -                 <tr class="type-header-row">
 -                     @foreach($type->header as $index => $header)
 -                         <td @class([
 -                             $report->getAlignmentClass($index),
 -                             'type-row-indent' => $index === 'account_name',
 -                         ])
 -                         >
 -                             {{ $header }}
 -                         </td>
 -                     @endforeach
 -                 </tr>
 - 
 -                 <!-- Type Data -->
 -                 @foreach($type->data as $typeRow)
 -                     <tr class="type-data-row">
 -                         @foreach($typeRow as $index => $cell)
 -                             <td @class([
 -                                 $report->getAlignmentClass($index),
 -                                 'whitespace-normal type-row-indent' => $index === 'account_name',
 -                                 'whitespace-nowrap' => $index !== 'account_name',
 -                             ])
 -                             >
 -                                 @if(is_array($cell) && isset($cell['name']))
 -                                     {{ $cell['name'] }}
 -                                 @else
 -                                     {{ $cell }}
 -                                 @endif
 -                             </td>
 -                         @endforeach
 -                     </tr>
 -                 @endforeach
 - 
 -                 <!-- Type Summary -->
 -                 <tr class="type-summary-row">
 -                     @foreach($type->summary as $index => $cell)
 -                         <td @class([
 -                             $report->getAlignmentClass($index),
 -                             'type-row-indent' => $index === 'account_name',
 -                         ])
 -                         >
 -                             {{ $cell }}
 -                         </td>
 -                     @endforeach
 -                 </tr>
 -             @endforeach
 - 
 -             <tr class="category-summary-row">
 -                 @foreach($category->summary as $index => $cell)
 -                     <td @class([
 -                         $report->getAlignmentClass($index),
 -                         'underline-bold' => $loop->last,
 -                     ])
 -                     >
 -                         {{ $cell }}
 -                     </td>
 -                 @endforeach
 -             </tr>
 - 
 -             @unless($loop->last && empty($report->getOverallTotals()))
 -                 <tr class="spacer-row">
 -                     <td colspan="{{ count($report->getHeaders()) }}"></td>
 -                 </tr>
 -             @endunless
 -             </tbody>
 -         @endforeach
 -         <tfoot>
 -         <tr class="table-footer-row">
 -             @foreach ($report->getOverallTotals() as $index => $total)
 -                 <td class="{{ $report->getAlignmentClass($index) }}">
 -                     {{ $total }}
 -                 </td>
 -             @endforeach
 -         </tr>
 -         </tfoot>
 -     </table>
 - 
 -     <!-- Second Overview Table -->
 -     <table class="table-class" style="margin-top: 40px;">
 -         <colgroup>
 -             @if(array_key_exists('account_code', $report->getHeaders()))
 -                 <col span="1" style="width: 20%;">
 -                 <col span="1" style="width: 55%;">
 -                 <col span="1" style="width: 25%;">
 -             @else
 -                 <col span="1" style="width: 65%;">
 -                 <col span="1" style="width: 35%;">
 -             @endif
 -         </colgroup>
 -         <thead class="table-head">
 -         <tr>
 -             @foreach($report->getOverviewHeaders() as $index => $header)
 -                 <th class="{{ $report->getAlignmentClass($index) }}">
 -                     {{ $header }}
 -                 </th>
 -             @endforeach
 -         </tr>
 -         </thead>
 -         <!-- Overview Content -->
 -         @foreach($report->getOverview() as $overviewCategory)
 -             <tbody>
 -             <tr class="category-header-row">
 -                 @foreach($overviewCategory->header as $index => $header)
 -                     <td class="{{ $report->getAlignmentClass($index) }}">
 -                         {{ $header }}
 -                     </td>
 -                 @endforeach
 -             </tr>
 -             @foreach($overviewCategory->data as $overviewAccount)
 -                 <tr>
 -                     @foreach($overviewAccount as $index => $cell)
 -                         <td @class([
 -                             $report->getAlignmentClass($index),
 -                             'whitespace-normal' => $index === 'account_name',
 -                             'whitespace-nowrap' => $index !== 'account_name',
 -                         ])
 -                         >
 -                             @if(is_array($cell) && isset($cell['name']))
 -                                 {{ $cell['name'] }}
 -                             @else
 -                                 {{ $cell }}
 -                             @endif
 -                         </td>
 -                     @endforeach
 -                 </tr>
 -             @endforeach
 -             <!-- Summary Row -->
 -             <tr class="category-summary-row">
 -                 @foreach($overviewCategory->summary as $index => $summaryCell)
 -                     <td class="{{ $report->getAlignmentClass($index) }}">
 -                         {{ $summaryCell }}
 -                     </td>
 -                 @endforeach
 -             </tr>
 - 
 -             @if($overviewCategory->header['account_name'] === 'Starting Balance')
 -                 @foreach($report->getOverviewAlignedWithColumns() as $summaryRow)
 -                     <tr>
 -                         @foreach($summaryRow as $index => $summaryCell)
 -                             <td @class([
 -                                 $report->getAlignmentClass($index),
 -                                 'font-bold' => $loop->parent->last,
 -                                 'underline-thin' => $loop->parent->remaining === 1 && $index === 'net_movement',
 -                                 'underline-bold' => $loop->parent->last && $index === 'net_movement',
 -                             ])
 -                             >
 -                                 {{ $summaryCell }}
 -                             </td>
 -                         @endforeach
 -                     </tr>
 -                 @endforeach
 -             @endif
 -             </tbody>
 -         @endforeach
 -     </table>
 - @endsection
 
 
  |