@php $items = $items ?? []; $title = $title ?? '口径说明'; $collapsible = (bool) ($collapsible ?? true); @endphp @if(is_array($items) && count($items) > 0) @if($collapsible)
{{ $title }}:(点击展开)
@foreach($items as $i => $text) {{ $text }}@if($i < count($items) - 1);@endif @endforeach
@else
{{ $title }}: @foreach($items as $i => $text) {{ $text }}@if($i < count($items) - 1);@endif @endforeach
@endif @endif