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.

custom-section.blade.php 976B

12345678910111213141516171819202122232425262728293031
  1. @php
  2. $isAside = $isAside();
  3. @endphp
  4. <x-custom-section
  5. :aside="$isAside"
  6. :collapsed="$isCollapsed()"
  7. :collapsible="$isCollapsible() && (! $isAside)"
  8. :compact="$isCompact()"
  9. :contained="$isContained()"
  10. :content-before="$isFormBefore()"
  11. :description="$getDescription()"
  12. :footer-actions="$getFooterActions()"
  13. :footer-actions-alignment="$getFooterActionsAlignment()"
  14. :header-actions="$getHeaderActions()"
  15. :heading="$getHeading()"
  16. :icon="$getIcon()"
  17. :icon-color="$getIconColor()"
  18. :icon-size="$getIconSize()"
  19. :persist-collapsed="$shouldPersistCollapsed()"
  20. :attributes="
  21. \Filament\Support\prepare_inherited_attributes($attributes)
  22. ->merge([
  23. 'id' => $getId(),
  24. ], escape: false)
  25. ->merge($getExtraAttributes(), escape: false)
  26. ->merge($getExtraAlpineAttributes(), escape: false)
  27. "
  28. >
  29. {{ $getChildComponentContainer() }}
  30. </x-custom-section>