@extends('base.base') @section('content') @if (theme()->getOption('layout', 'main/type') === 'blank')
{{ $slot }}
@else
@if( theme()->getOption('layout', 'aside/display') === true ) {{ theme()->getView('layout/aside/_base') }} @endif
{{ theme()->getView('layout/header/_base') }}
@if (theme()->getOption('layout', 'toolbar/display') === true) {{ theme()->getView('layout/toolbars/_' . theme()->getOption('layout', 'toolbar/layout')) }} @endif
{{ theme()->getView('layout/_content', compact('slot')) }}
{{ theme()->getView('layout/_footer') }}
@if(theme()->getOption('layout', 'scrolltop/display') === true) {{ theme()->getView('layout/_scrolltop') }} @endif @endif @endsection