{{--

캠프 프로그램

@php $html = $Template->text('캠프 프로그램 소개 멘트'); @endphp

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

@php $html = $Template->text('캠프 프로그램 내용 제목'.$cnt); @endphp

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

@php $list = $Template->customList('캠프 프로그램 내용(좌측 이미지형)', [ 'IMAGE' => 'Image', 'text' ]); @endphp
@if(!empty($list)) @foreach($list as $cont)
@if(!empty($cont->IMAGE)) 주요 특징 대표 이미지 @endif @if(!empty($cont->text))

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

@endif
@endforeach @endif
@php $list = $Template->customList('캠프 프로그램 내용(NxN 타일 이미지형)', [ 'IMAGE' => 'Image' ]); @endphp
@if(!empty($list)) @foreach($list as $cont)
@if(!empty($cont->IMAGE))
@endif
@endforeach @endif
@php $html = $Template->text('텍스트 입력'.$cnt); @endphp

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

@php $list = $Template->customList('캠프 프로그램 내용(상단 이미지형)', [ 'IMAGE_1' => 'Image', 'IMAGE_2' => '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
--}} @php $img = $Template->image('백그라운드'.$cnt); @endphp
src, 'no-image.png') == false)style="background: url('{{ $img->src }}') no-repeat center center; background-size: cover;"@endif > @if ($method=='edit')
방식을 선택해야 하는 파일입니다.

방식선택
textBox : 텍스트 박스를 쓸때 아무거나 입력시 나옵니다. circleBox, tableBox, imgBox를 빈 값으로 넣어주세요
circleBox : 서클 박스를 쓸때 아무거나 입력시 나옵니다. textBox, tableBox, imgBox를 빈 값으로 넣어주세요
tableBox : 테이블 박스를 쓸때 아무거나 입력시 나옵니다. textBox, circleBox, imgBox를 빈 값으로 넣어주세요
imgBoxLeft : 이미지 박스를 쓸때 아무거나 입력시 나옵니다. textBox, circleBox, tableBox를 빈 값으로 넣어주세요
imgBoxUpper : 이미지 박스를 쓸때 아무거나 입력시 나옵니다. textBox, circleBox, tableBox를 빈 값으로 넣어주세요
borderBox : 테두리 추가후 여백을 넣습니다.
title : h2 타이틀 입니다.
titleColor : 타이틀 색상 입니다.
subTitle : h2 서브 타이틀입니다.
cnt : 추가 될때마다 추가해주세요. 페이지 내에 choice를 사용했을때도 이어서 추가해주세요
@endif @php $lists = $Template->customList('방식 선택'.$cnt , [ 'textBox', 'imgBoxLeft', 'imgBoxUpper', 'title', 'titleColor', 'subTitle', 'cnt' ]); @endphp @if(!empty($lists)) @foreach($lists as $con) @if(!empty($con->cnt))
@if(!empty($con->title))

titleColor))style="color:{{$con->titleColor}};"@endif>{{ $con->title }} @if(!empty($con->subTitle)){!! $con->subTitle !!}@endif

@endif
@endif @endforeach @endif