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.

detailed-report.blade.php 1.2KB

1234567891011121314151617181920212223242526272829303132
  1. <x-filament-panels::page>
  2. <x-filament::section>
  3. <div class="flex flex-col md:flex-row items-start md:items-center gap-4">
  4. <!-- Form Container -->
  5. @if(method_exists($this, 'filtersForm'))
  6. <div class="flex-1 min-w-0">
  7. {{ $this->filtersForm }}
  8. </div>
  9. @endif
  10. <!-- Grouping Button and Column Toggle -->
  11. @if($this->hasToggleableColumns())
  12. <div class="flex-shrink-0 mr-4">
  13. <x-filament-tables::column-toggle.dropdown
  14. :form="$this->getTableColumnToggleForm()"
  15. :trigger-action="$this->getToggleColumnsTriggerAction()"
  16. />
  17. </div>
  18. @endif
  19. <div class="flex-shrink-0 w-[9.5rem] flex justify-end">
  20. {{ $this->applyFiltersAction }}
  21. </div>
  22. </div>
  23. </x-filament::section>
  24. <x-company.tables.container :report-loaded="$this->reportLoaded">
  25. @if($this->report)
  26. <x-company.tables.reports.detailed-report :report="$this->report"/>
  27. @endif
  28. </x-company.tables.container>
  29. </x-filament-panels::page>