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.

cash-flow-statement.blade.php 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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">
  4. <!-- Form Container -->
  5. @if(method_exists($this, 'filtersForm'))
  6. {{ $this->filtersForm }}
  7. @endif
  8. <!-- Grouping Button and Column Toggle -->
  9. @if($this->hasToggleableColumns())
  10. <x-filament-tables::column-toggle.dropdown
  11. :form="$this->getTableColumnToggleForm()"
  12. :trigger-action="$this->getToggleColumnsTriggerAction()"
  13. />
  14. @endif
  15. <div class="inline-flex items-center min-w-0 md:min-w-[9.5rem] justify-end">
  16. {{ $this->applyFiltersAction }}
  17. </div>
  18. </div>
  19. </x-filament::section>
  20. <x-report-summary-section
  21. :report-loaded="$this->reportLoaded"
  22. :summary-data="$this->report?->getSummary()"
  23. target-label="Net Cash Flow"
  24. />
  25. <x-report-tabs :active-tab="$activeTab" :tabs="$this->getTabs()"/>
  26. <x-company.tables.container :report-loaded="$this->reportLoaded">
  27. @if($this->report)
  28. @if($activeTab === 'summary')
  29. <x-company.tables.reports.cash-flow-statement-summary :report="$this->report"/>
  30. @elseif($activeTab === 'details')
  31. <x-company.tables.reports.cash-flow-statement :report="$this->report"/>
  32. @endif
  33. @endif
  34. </x-company.tables.container>
  35. </x-filament-panels::page>