Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

income-statement.blade.php 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 Earnings"
  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.income-statement-summary :report="$this->report"/>
  34. @elseif($activeTab === 'details')
  35. <x-company.tables.reports.income-statement :report="$this->report"/>
  36. @endif
  37. @endif
  38. </x-company.tables.container>
  39. </x-filament-panels::page>