@extends('layouts.fullpage') @section('content') {{----}}
@foreach($IndexPage->sections()->where('active', true)->get() as $section) @if(!empty($section->background_image))
{{-- --}}
{{$section->name}}

{{$section->detail}}

@foreach($section->sectionContent as $content) @if($content->mini)
{!! $content->raw !!}
@endif @endforeach
@else
{{-- --}}
{{$section->name}}

{{$section->detail}}

@foreach($section->sectionContent as $content) @if($content->mini)
{!! $content->raw !!}
@endif @endforeach
@endif @endforeach {{--
First section ...
Second section ...
--}}
@endsection