| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 | 
							- @php
 -     use Filament\Support\Enums\Alignment;
 -     use Filament\Support\Enums\IconSize;
 - @endphp
 - 
 - @props([
 -     'aside' => false,
 -     'collapsed' => false,
 -     'collapsible' => false,
 -     'compact' => false,
 -     'contained' => true,
 -     'contentBefore' => false,
 -     'description' => null,
 -     'footerActions' => [],
 -     'footerActionsAlignment' => Alignment::Start,
 -     'headerActions' => [],
 -     'headerEnd' => null,
 -     'heading' => null,
 -     'icon' => null,
 -     'iconColor' => 'gray',
 -     'iconSize' => IconSize::Large,
 -     'persistCollapsed' => false,
 - ])
 - 
 - @php
 -     $hasDescription = filled((string) $description);
 -     $hasHeading = filled($heading);
 -     $hasIcon = filled($icon);
 - 
 -     if (is_array($headerActions)) {
 -         $headerActions = array_filter(
 -             $headerActions,
 -             fn ($headerAction): bool => $headerAction->isVisible(),
 -         );
 -     }
 - 
 -     if (is_array($footerActions)) {
 -         $footerActions = array_filter(
 -             $footerActions,
 -             fn ($footerAction): bool => $footerAction->isVisible(),
 -         );
 -     }
 - 
 -     $hasHeaderActions = $headerActions instanceof \Illuminate\Contracts\Support\Htmlable
 -         ? ! \Filament\Support\is_slot_empty($headerActions)
 -         : filled($headerActions);
 - 
 -     $hasFooterActions = $footerActions instanceof \Illuminate\Contracts\Support\Htmlable
 -         ? ! \Filament\Support\is_slot_empty($footerActions)
 -         : filled($footerActions);
 - 
 -     $hasHeader = $hasIcon || $hasHeading || $hasDescription || $collapsible || $hasHeaderActions || filled((string) $headerEnd);
 - @endphp
 - 
 - <section
 -     {{-- TODO: Investigate Livewire bug - https://github.com/filamentphp/filament/pull/8511 --}}
 -     x-data="{
 -         isCollapsed: @if ($persistCollapsed) $persist(@js($collapsed)).as(`section-${$el.id}-isCollapsed`) @else @js($collapsed) @endif,
 -     }"
 -     @if ($collapsible)
 -         x-on:collapse-section.window="if ($event.detail.id == $el.id) isCollapsed = true"
 -         x-on:expand="isCollapsed = false"
 -         x-on:open-section.window="if ($event.detail.id == $el.id) isCollapsed = false"
 -         x-on:toggle-section.window="if ($event.detail.id == $el.id) isCollapsed = ! isCollapsed"
 -         x-bind:class="isCollapsed && 'fi-collapsed'"
 -     @endif
 -     {{
 -         $attributes->class([
 -             'fi-section',
 -             'fi-aside grid grid-cols-1 items-start gap-x-6 gap-y-4 md:grid-cols-3' => $aside && $contained,
 -             'fi-aside grid grid-cols-1 items-start gap-x-6 gap-y-4 md:grid-cols-3 pt-4' => $aside && ! $contained,
 -             'rounded-xl bg-white shadow-sm ring-1 ring-gray-950/5 dark:bg-gray-900 dark:ring-white/10' => $contained && ! $aside,
 -         ])
 -     }}
 - >
 -     @if ($hasHeader)
 -         <header
 -             @if ($collapsible)
 -                 x-on:click="isCollapsed = ! isCollapsed"
 -             @endif
 -             @class([
 -                 'fi-section-header flex flex-col gap-3',
 -                 'cursor-pointer' => $collapsible,
 -                 'px-6 py-4' => $contained && ! $aside,
 -                 'px-4 py-2.5' => $compact && ! $aside,
 -                 'py-4' => ! $compact && ! $aside,
 -             ])
 -         >
 -             <div class="flex items-center gap-3">
 -                 @if ($hasIcon)
 -                     <x-filament::icon
 -                         :icon="$icon"
 -                         @class([
 -                             'fi-section-header-icon self-start',
 -                             match ($iconColor) {
 -                                 'gray' => 'text-gray-400 dark:text-gray-500',
 -                                 default => 'fi-color-custom text-custom-500 dark:text-custom-400',
 -                             },
 -                             is_string($iconColor) ? "fi-color-{$iconColor}" : null,
 -                             match ($iconSize) {
 -                                 IconSize::Small, 'sm' => 'h-4 w-4 mt-1',
 -                                 IconSize::Medium, 'md' => 'h-5 w-5 mt-0.5',
 -                                 IconSize::Large, 'lg' => 'h-6 w-6',
 -                                 default => $iconSize,
 -                             },
 -                         ])
 -                         @style([
 -                             \Filament\Support\get_color_css_variables(
 -                                 $iconColor,
 -                                 shades: [400, 500],
 -                                 alias: 'section.header.icon',
 -                             ) => $iconColor !== 'gray',
 -                         ])
 -                     />
 -                 @endif
 - 
 -                 @if ($hasHeading || $hasDescription)
 -                     <div class="grid flex-1 gap-y-1">
 -                         @if ($hasHeading)
 -                             <x-filament::section.heading>
 -                                 {{ $heading }}
 -                             </x-filament::section.heading>
 -                         @endif
 - 
 -                         @if ($hasDescription)
 -                             <x-filament::section.description>
 -                                 {{ $description }}
 -                             </x-filament::section.description>
 -                         @endif
 -                     </div>
 -                 @endif
 - 
 -                 @if ($hasHeaderActions)
 -                     <div class="hidden sm:block">
 -                         <x-filament::actions
 -                             :actions="$headerActions"
 -                             :alignment="\Filament\Support\Enums\Alignment::Start"
 -                             x-on:click.stop=""
 -                         />
 -                     </div>
 -                 @endif
 - 
 -                 {{ $headerEnd }}
 - 
 -                 @if ($collapsible)
 -                     <x-filament::icon-button
 -                         color="gray"
 -                         icon="heroicon-m-chevron-down"
 -                         icon-alias="section.collapse-button"
 -                         x-on:click.stop="isCollapsed = ! isCollapsed"
 -                         x-bind:class="{ 'rotate-180': ! isCollapsed }"
 -                     />
 -                 @endif
 -             </div>
 - 
 -             @if ($hasHeaderActions)
 -                 <div class="sm:hidden">
 -                     <x-filament::actions
 -                         :actions="$headerActions"
 -                         :alignment="\Filament\Support\Enums\Alignment::Start"
 -                         x-on:click.stop=""
 -                     />
 -                 </div>
 -             @endif
 -         </header>
 -     @endif
 - 
 -     <div
 -         @if ($collapsible)
 -             x-bind:aria-expanded="(! isCollapsed).toString()"
 -             @if ($collapsed || $persistCollapsed)
 -                 x-cloak
 -             @endif
 -             x-bind:class="{ 'invisible h-0 overflow-y-hidden border-none': isCollapsed }"
 -         @endif
 -         @class([
 -             'fi-section-content-ctn',
 -             'border-t border-gray-200 dark:border-white/10' => $hasHeader && ! $aside && $contained,
 -             'rounded-xl bg-white shadow-sm ring-1 ring-gray-950/5 dark:bg-gray-900 dark:ring-white/10 md:col-span-2' => $aside && $contained,
 -             'md:col-span-2' => $aside && ! $contained,
 -             'md:order-first' => $contentBefore,
 -         ])
 -     >
 -         <div
 -             @class([
 -                 'fi-section-content',
 -                 'pt-4' => ! $contained && ! $aside,
 -                 'p-4' => $compact && $contained,
 -                 'p-6' => ! $compact && $contained,
 -             ])
 -         >
 -             {{ $slot }}
 -         </div>
 - 
 -         @if ($hasFooterActions)
 -             <footer
 -                 @class([
 -                     'fi-section-footer',
 -                     'border-t border-gray-200 dark:border-white/10' => $contained,
 -                     'mt-6' => ! $contained,
 -                     'px-6 py-4' => ! $compact && $contained,
 -                     'px-4 py-2.5' => $compact && $contained,
 -                 ])
 -             >
 -                 <x-filament::actions
 -                     :actions="$footerActions"
 -                     :alignment="$footerActionsAlignment"
 -                 />
 -             </footer>
 -         @endif
 -     </div>
 - </section>
 
 
  |