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.

cluster.blade.php 725B

123456789101112131415161718192021222324
  1. <x-dynamic-component
  2. :component="$getFieldWrapperView()"
  3. :field="$field"
  4. >
  5. <x-filament::input.wrapper
  6. @class([
  7. "guava-fi-cl-cluster",
  8. ...$field->getResponsiveClasses(),
  9. ])
  10. >
  11. {{ $getChildComponentContainer() }}
  12. </x-filament::input.wrapper>
  13. @foreach($field->getChildComponents() as $child)
  14. @if ($childStatePath = $child->getStatePath())
  15. @if($errors->has($childStatePath) )
  16. <x-filament-forms::field-wrapper.error-message>
  17. {{ $errors->first($childStatePath) }}
  18. </x-filament-forms::field-wrapper.error-message>
  19. @endif
  20. @endif
  21. @endforeach
  22. </x-dynamic-component>