@php $containers = $getChildComponentContainers(); $addAction = $getAction($getAddActionName()); $cloneAction = $getAction($getCloneActionName()); $deleteAction = $getAction($getDeleteActionName()); $moveDownAction = $getAction($getMoveDownActionName()); $moveUpAction = $getAction($getMoveUpActionName()); $reorderAction = $getAction($getReorderActionName()); $isAddable = $isAddable(); $isCloneable = $isCloneable(); $isCollapsible = $isCollapsible(); $isDeletable = $isDeletable(); $isReorderable = $isReorderable(); $isReorderableWithButtons = $isReorderableWithButtons(); $isReorderableWithDragAndDrop = $isReorderableWithDragAndDrop(); $statePath = $getStatePath(); $columnLabels = $getColumnLabels(); $colStyles = $getColStyles(); @endphp
merge($getExtraAttributes(), escape: false) ->class(['bg-white border border-gray-150 rounded-xl relative dark:bg-gray-900 dark:border-gray-700']) }} >
@if ($isCollapsible)
@endif
@foreach($columnLabels as $columnLabel) @if($columnLabel['display']) @else @endif @endforeach @if ($isReorderableWithDragAndDrop || $isReorderableWithButtons || $isCloneable || $isDeletable) @endif @foreach ($containers as $uuid => $item) @foreach($item->getComponents() as $component) @endforeach @if ($isReorderableWithDragAndDrop || $isReorderableWithButtons || filled($itemLabel) || $isCloneable || $isDeletable || $isCollapsible) @endif @endforeach
{{ $columnLabel['name'] }}
isHidden() || ($component instanceof \Filament\Forms\Components\Hidden))style="display:none"@endif @if($colStyles && isset($colStyles[$component->getName()])) style="{{ $colStyles[$component->getName()] }}" @endif > {{ $component }} @if ($isReorderableWithDragAndDrop || $isReorderableWithButtons) @if ($isReorderableWithDragAndDrop)
{{ $reorderAction }}
@endif @if ($isReorderableWithButtons)
{{ $moveUpAction(['item' => $uuid])->disabled($loop->first) }}
{{ $moveDownAction(['item' => $uuid])->disabled($loop->last) }}
@endif @endif @if ($isCloneable || $isDeletable ) @if ($cloneAction->isVisible())
{{ $cloneAction(['item' => $uuid]) }}
@endif @if ($isDeletable)
{{ $deleteAction(['item' => $uuid]) }}
@endif @endif
{{ __('filament-table-repeater::components.table-repeater.collapsed') }}
@if($isAddable)
{{ $addAction }}
@endif