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.

account-transactions.blade.php 1.5KB

123456789101112131415161718192021222324252627282930313233
  1. <x-filament-panels::page>
  2. <x-filament::section>
  3. {{ $this->getFiltersForm() }}
  4. </x-filament::section>
  5. <x-filament-tables::container>
  6. <div class="es-table__header-ctn"></div>
  7. <div
  8. class="relative divide-y divide-gray-200 overflow-x-auto dark:divide-white/10 dark:border-t-white/10 min-h-64">
  9. <div wire:init="applyFilters" class="flex items-center justify-center w-full h-full absolute">
  10. <div wire:loading wire:target="applyFilters">
  11. <x-filament::loading-indicator class="p-6 text-primary-700 dark:text-primary-300"/>
  12. </div>
  13. </div>
  14. @if($this->reportLoaded)
  15. <div wire:loading.remove wire:target="applyFilters">
  16. @if($this->report && !$this->tableHasEmptyState())
  17. <x-company.tables.reports.account-transactions :report="$this->report"/>
  18. @else
  19. <x-filament-tables::empty-state
  20. :actions="$this->getEmptyStateActions()"
  21. :description="$this->getEmptyStateDescription()"
  22. :heading="$this->getEmptyStateHeading()"
  23. :icon="$this->getEmptyStateIcon()"
  24. />
  25. @endif
  26. </div>
  27. @endif
  28. </div>
  29. <div class="es-table__footer-ctn border-t border-gray-200"></div>
  30. </x-filament-tables::container>
  31. </x-filament-panels::page>