@php $img = $Template->image('해외영어캠프 타이틀 배경화면'); @endphp
@php $cont = $Template->text('서브 타이틀'); @endphp

{!! str_replace('
', '', $cont->str) !!}

@php $cont = $Template->text('타이틀'); @endphp

{!! str_replace('
', '', $cont->str) !!}

@for($i = 0; $i < 4; $i++) @php $cont = $Template->text('태그 부분'.$cnt); @endphp {{ $cont->str }} @endfor
@php $list = $Template->customList('주요 내용'.$cnt, ['IMAGE' => 'Image', 'text', 'subtext']); @endphp @if(!empty($list))
    @foreach($list as $cont)
  • @if(!empty($cont->IMAGE))
    @endif @if(!empty($cont->text)) {!! str_replace('
    ', '', $cont->text) !!}
    @endif
    @if(!empty($cont->subtext))

    {!! str_replace('
    ', '', $cont->subtext) !!}

    @endif
  • @endforeach
@endif