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 775B

1234567891011121314151617181920
  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-company.tables.container :report-loaded="$this->reportLoaded">
  8. @if($this->report && ! $this->tableHasEmptyState())
  9. <x-company.tables.reports.account-transactions :report="$this->report"/>
  10. @else
  11. <x-filament-tables::empty-state
  12. :actions="$this->getEmptyStateActions()"
  13. :description="$this->getEmptyStateDescription()"
  14. :heading="$this->getEmptyStateHeading()"
  15. :icon="$this->getEmptyStateIcon()"
  16. />
  17. @endif
  18. </x-company.tables.container>
  19. </x-filament-panels::page>