@extends('front.layouts.mobile_app')
@section('content')
@empty(!$content->banner)
@empty(!$content->banner_content)
{!! $content->banner_content !!}
@endempty
@endempty
@if(!empty($content->title))
{!! $content->title !!}
@endif
@if ($content->description != NULL)
{!! $content->description !!}
@endif
@if ($content->modules != NULL)
@foreach ($content->modules as $module)
@includeIf($module)
@endforeach
@endif
@endsection