@php $cont = $Template->text('h2 부분'.$cnt,'서브 텍스트'); @endphp

{{ $cont->str }} @if($cont->lnk != "#"){!! $cont->lnk !!}@endif

@php $textBox = $Template->customList('비자 텍스트 '.$cnt, [ 'textBox', 'title', 'text', 'list' ]); @endphp @if(!empty($textBox)) @foreach($textBox as $texts)
@if(!empty($texts->title))

{!! $texts->title !!}

@endif @if(!empty($texts->text))

{!! $texts->text !!}

@endif @if(!empty($texts->list))
    @php $list = $Template->customList('비자 리스트 '.$texts->list, [ 'text', 'span', 'checkIcon', 'number' ]); @endphp @if(!empty($list)) @foreach($list as $cont) @if(!empty($cont->text))
  • @if(!empty($cont->number)) {!! $cont->number !!} @endif @if(!empty($cont->checkIcon)) @endif

    {!! $cont->text !!} @if(!empty($cont->span)) {!! $cont->span !!} @endif

  • @endif @endforeach @endif
@endif
@endforeach @endif