@if ($hasOneColumn)
{{__('Header & Footer')}}
{{__('Header Section')}}
{{__('CONTENT AREA')}}
{{__('Footer Section')}}
@else
@foreach ($viewTypes as $key => $name)
{{$name}}
{{__('Top Section')}}
@foreach ($contents[$key]['top'] as $content)
@include('shaun_core::admin.partial.layout.content')
@endforeach
{{$key != 'mobile'?__('Center Content Section'):__('Main Content Section')}}
@if ($key!='mobile')
{{__('Right Content Section')}}
@endif
@foreach ($contents[$key]['center'] as $content)
@include('shaun_core::admin.partial.layout.content')
@endforeach
@foreach ($contents[$key]['right'] as $content)
@include('shaun_core::admin.partial.layout.content')
@endforeach
{{__('Bottom Section')}}
@foreach ($contents[$key]['bottom'] as $content)
@include('shaun_core::admin.partial.layout.content')
@endforeach
@endforeach
@endif