@if ($page->production)
@endif
{{ ($title ?? null) ? $title . ' | Tenancy for Laravel' : 'Tenancy for Laravel' }}
{{-- Header --}}
@include('_partials.header')
{{-- /Header --}}
@yield('content')
{{-- Footer --}}
@include('_partials.footer')
{{-- /Footer --}}
{{-- Banner --}}
@unless(isset($banner) && $banner === false )
@include('_partials.banner')
@endunless
{{-- /Banner --}}
@stack('scripts')