14 lines
348 B
PHP
14 lines
348 B
PHP
@php
|
||
$items = $items ?? [];
|
||
$title = $title ?? '口径说明';
|
||
@endphp
|
||
|
||
@if(is_array($items) && count($items) > 0)
|
||
<div class="muted muted-xs">
|
||
<strong>{{ $title }}:</strong>
|
||
@foreach($items as $i => $text)
|
||
<span>{{ $text }}@if($i < count($items) - 1);@endif</span>
|
||
@endforeach
|
||
</div>
|
||
@endif
|