{{-- example_article/page --}} @extends('admin.frest_admin.page_layout') @section('title') {{ $title }} - @parent @endsection @push('style') {{-- vendor css --}} {{-- theme css --}} {{-- after bootstrap --}} {{-- --}} {{-- --}} {{-- --}} {{-- page css --}} {{-- custom css --}} @endpush @push('style-after-global') @endpush @section('body-attribute') class="horizontal-layout horizontal-menu navbar-sticky 2-columns footer-static" style="background-color: #FFFFFF;" data-open="hover" data-menu="horizontal-menu" data-col="2-columns" @endsection @section('body') {{-- header --}}
{{-- navbar --}}
{{-- header --}}
@component('header_component', [ // form config here 'slug' => $slug, 'sliders' => $sliders, 'times' => $times, 'menus' => $menus, ]) {{-- slot --}} @endcomponent
{{-- end header --}} {{-- main menu --}}
@component('regulation.content', [ // form config here 'slug' => $slug, 'page_name' => $page_name, 'url' => $url, 'values' => $values, 'activities' => $activities, 'banner_widgets' => $banner_widgets, 'links' => $links, 'visits' => $visits, ]) {{-- slot --}} @endcomponent
{{-- end main menu --}} {{-- footer --}}
@component('footer_component', [ 'links' => $links, ]) {{-- slot --}} @endcomponent
{{-- end footer --}} {{-- chat widget --}} @component('widget.chat_message_component', [ // form config here ]) {{-- slot --}} @endcomponent {{-- end chat widget --}} {{-- arrow up --}}
{{-- end arrow up --}}
@component('navbar_mobile_component', [ // form config here 'slug' => $slug, 'menus' => $menus, ]) {{-- slot --}} @endcomponent {{-- mobile navigation --}} @component('widget.mobile_navigation_component', [ // form config here ]) {{-- slot --}} @endcomponent {{-- end mobile navigation --}}
@endsection @push('script') {{-- Vendor JS --}} {{-- Page Vendor JS --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- Theme JS --}} {{-- Page JS --}} {{-- --}} {{-- type page js here --}} @endpush