{{-- Dispatcher: renderiza el partial correcto segĂșn el field type --}} @props(['field', 'view', 'value' => null, 'name' => null, 'items' => null]) @php $type = $field['type'] ?? 'text'; $colWidth = match($type) { 'textarea', 'richtext' => 'col-12', 'image', 'url' => 'col-12 col-md-8', 'boolean' => 'col-6 col-md-3', 'number' => 'col-6 col-md-3', 'repeater' => 'col-12', default => 'col-12 col-md-6', }; @endphp