@extends('livewire.forms.input-template') @section('auto-update') @parent
@overwrite @section('pending') @parent
@overwrite @section('render') @php $list=json_decode($input->value,true) @endphp @if(!empty($list))
{{ $input->display_name }}
    @foreach ($list['items'] as $element)
  • {{ $element }}
  • @endforeach
@endif @overwrite @section('display') @if ($input->value != null) @php $list=json_decode($input->value,true) @endphp @endif @overwrite @section('other') @if ($input->value != null) @php $list=json_decode($input->value,true) @endphp @endif @overwrite