| 1234567891011121314151617181920212223242526272829303132 | 
							- <x-filament-panels::page>
 -     <x-filament::section>
 -         <div class="flex flex-col md:flex-row items-start md:items-center gap-4">
 -             <!-- Form Container -->
 -             @if(method_exists($this, 'filtersForm'))
 -                 <div class="flex-1 min-w-0">
 -                     {{ $this->filtersForm }}
 -                 </div>
 -             @endif
 - 
 -             <!-- Grouping Button and Column Toggle -->
 -             @if($this->hasToggleableColumns())
 -                 <div class="flex-shrink-0 mr-4">
 -                     <x-filament-tables::column-toggle.dropdown
 -                         :form="$this->getTableColumnToggleForm()"
 -                         :trigger-action="$this->getToggleColumnsTriggerAction()"
 -                     />
 -                 </div>
 -             @endif
 - 
 -             <div class="flex-shrink-0 w-[9.5rem] flex justify-end">
 -                 {{ $this->applyFiltersAction }}
 -             </div>
 -         </div>
 -     </x-filament::section>
 - 
 -     <x-company.tables.container :report-loaded="$this->reportLoaded">
 -         @if($this->report)
 -             <x-company.tables.reports.detailed-report :report="$this->report"/>
 -         @endif
 -     </x-company.tables.container>
 - </x-filament-panels::page>
 
 
  |