Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

cash-flow-statement.blade.php 1.6KB

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