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.

balance-sheet.blade.php 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <x-filament-panels::page>
  2. <x-filament::section>
  3. <div class="flex flex-col lg:flex-row items-start lg:items-end 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. <div class="lg:mb-1">
  11. <x-filament-tables::column-toggle.dropdown
  12. :form="$this->getTableColumnToggleForm()"
  13. :trigger-action="$this->getToggleColumnsTriggerAction()"
  14. />
  15. </div>
  16. @endif
  17. <div class="inline-flex items-center min-w-0 lg:min-w-[9.5rem] justify-end">
  18. {{ $this->applyFiltersAction }}
  19. </div>
  20. </div>
  21. </x-filament::section>
  22. <x-report-summary-section
  23. :report-loaded="$this->reportLoaded"
  24. :summary-data="$this->report?->getSummary()"
  25. target-label="Net Assets"
  26. />
  27. <x-report-tabs :active-tab="$activeTab" :tabs="$this->getTabs()"/>
  28. <x-company.tables.container :report-loaded="$this->reportLoaded">
  29. @if($this->report)
  30. @if($activeTab === 'summary')
  31. <x-company.tables.reports.balance-sheet-summary :report="$this->report"/>
  32. @elseif($activeTab === 'details')
  33. <x-company.tables.reports.balance-sheet :report="$this->report"/>
  34. @endif
  35. @endif
  36. </x-company.tables.container>
  37. </x-filament-panels::page>