@php $title = $Template->text('현지 서비스 리스트 타이틀'.$cont->cnt); @endphp

{{ $title->str }}

@php $service = $Template->customList('현지 서비스 리스트'.$cont->cnt, [ 'title', 'list', 'text', 'cnt' ]); @endphp @if(!empty($service)) @foreach($service as $cont)
@if(!empty($cont->title))

{!! $cont->title !!}

@if(!empty($cont->list)) @php $serviceList = $Template->customList('현지 서비스 리스트 텍스트 '.$cont->cnt, [ 'text', ]); @endphp
    @if(!empty($serviceList)) @foreach($serviceList as $conts) @if(!empty($conts->text))
  • {!! $conts->text !!}
  • @endif @endforeach @endif
@endif @if(!empty($cont->text)) @php $text = $Template->text('서비스 리스트 텍스트'.$cont->text); @endphp

{!! $text->str !!}

@endif @endif
@endforeach @endif