Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

detailed-report.blade.php 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <x-filament-panels::page>
  2. <x-filament::section>
  3. <div class="flex flex-col md:flex-row items-start md:items-center justify-between gap-4 md:gap-8">
  4. <!-- Form Container -->
  5. <div class="flex-grow">
  6. {{ $this->getFiltersForm() }}
  7. </div>
  8. <!-- Grouping Button and Column Toggle -->
  9. <div class="flex flex-col md:flex-row items-start md:items-center gap-4 md:gap-8 flex-shrink-0">
  10. @if($this->hasToggleableColumns())
  11. <x-filament-tables::column-toggle.dropdown
  12. :form="$this->toggleTableColumnForm"
  13. :trigger-action="$this->toggleColumnsAction"
  14. />
  15. @endif
  16. {{ $this->getFiltersApplyAction() }}
  17. </div>
  18. </div>
  19. </x-filament::section>
  20. <x-filament-tables::container>
  21. <div class="es-table__header-ctn"></div>
  22. <div
  23. class="relative divide-y divide-gray-200 overflow-x-auto dark:divide-white/10 dark:border-t-white/10 min-h-64">
  24. <div wire:init="applyFilters" class="flex items-center justify-center w-full h-full absolute">
  25. <div wire:loading wire:target="applyFilters">
  26. <x-filament::loading-indicator class="p-6 text-primary-700 dark:text-primary-300"/>
  27. </div>
  28. </div>
  29. @if($this->reportLoaded)
  30. <div wire:loading.remove wire:target="applyFilters">
  31. @if($this->report)
  32. <x-company.tables.reports.detailed-report :report="$this->report"/>
  33. @endif
  34. </div>
  35. @endif
  36. </div>
  37. <div class="es-table__footer-ctn border-t border-gray-200"></div>
  38. </x-filament-tables::container>
  39. </x-filament-panels::page>