{{-- Print SEO --}} @php $seo_title = $seo_title ?? ($page->title ?? ($web_information->information->seo_title ?? '')); $seo_keyword = $seo_keyword ?? ($page->keyword ?? ($web_information->information->seo_keyword ?? '')); $seo_description = $seo_description ?? ($page->description ?? ($web_information->information->seo_description ?? '')); $seo_image = $seo_image ?? ($page->json_params->og_image ?? ($web_information->image->seo_og_image ?? '')); @endphp {{-- End Print SEO --}} {{-- Include style for app --}} @include('frontend.panels.styles') {{-- Styles custom each page --}} @stack('style') @stack('schema')
@include('frontend.blocks.header.styles.default') {{-- Foreach and print block content by current page --}} @if (isset($blocks_selected)) @foreach ($blocks_selected as $block) @if (\View::exists('frontend.blocks.' . $block->block_code . '.index')) @include('frontend.blocks.' . $block->block_code . '.index') @else {{ 'View: frontend.blocks.' . $block->block_code . '.index do not exists!' }} @endif @endforeach @endif @include('frontend.blocks.footer.styles.default')
{{-- Include fixed alert --}} @include('frontend.components.sticky.alert') {{-- Include scripts --}} @include('frontend.panels.scripts') {{-- Scripts custom each page --}} @stack('script') {{-- Include sticky contact --}} @include('frontend.components.sticky.contact') {{-- Include popup --}} @include('frontend.components.popup.default')