@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/_' . theme()->getOption('layout', 'content/layout'), compact('slot')) }}
{{ theme()->getView('layout/_footer') }}
{{--{{ theme()->getView('layout/topbar/partials/_activity-drawer') }}--}} {{ theme()->getView('layout/topbar/partials/_filter-sidebar') }} {{--{{ theme()->getView('layout/_explore-drawer') }}--}} {{--{{ theme()->getView('partials/modals/_invite-friends') }} {{ theme()->getView('partials/modals/create-account/_main') }} {{ theme()->getView('partials/modals/_upgrade-plan') }}--}} @if(theme()->getOption('layout', 'scrolltop/display') === true) {{ theme()->getView('layout/_scrolltop') }} @endif @endif {{ theme()->getView('partials/modals/modal') }} @endsection