Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

account-transactions.blade.php 758B

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