@php $isEdit = (bool) $item; $modalId = $isEdit ? 'editItem'.$item->id : 'addItem'.$section->id; $action = $isEdit ? route('checklist.items.update', $item) : route('checklist.items.store', $section); $optsText = $isEdit && is_array($item->options) ? implode("\n", $item->options) : ''; @endphp