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.6KB

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