@extends('frontend.themes.basic.layouts.app') @section('content') @include('frontend.themes.basic.partials.header', ['title' => $page->title])
@if ($ad = ad('mailbox_top'))
{!! $ad !!}
@endif
@if ($ad = ad('mailbox_left'))
{!! $ad !!}
@endif
{{ $page->title }}
{!! $page->content !!}
@if ($ad = ad('mailbox_bottom'))
{!! $ad !!}
@endif
@if ($ad = ad('mailbox_right'))
{!! $ad !!}
@endif
@endsection