@extends('layouts.app') @php $class_background = ' '.($template_config->template->background->type ?? '').' '.($template_config->template->background->class ?? ''); $class_slider_notext = !$template_config->slider->show_info ? ' slider-notext':''; @endphp @section('body_class',$class_background.$class_slider_notext) @section('extra-head') {{-- @parent - uncomment if needed include parent extra head section --}} {{-- custom styles {!! Html::style('template9/css/app.css', ['id' => 'mainStyles', 'media' => 'screen'], Request::secure()) !!} --}} {!! Html::style(app()->environment('production') ? mix('template9/css/app.css') : asset('template9/css/app.css'), ['id' => 'mainStyles', 'media' => 'screen'], Request::secure()) !!} @endsection @section('extra-scripts') @parent {{-- custom scripts --}} {{-- {!! Html::script('template9/js/jquery.min.js', [], Request::secure()) !!} --}} {!! Html::script('template9/js/tether.min.js', [], Request::secure()) !!} {!! Html::script('template9/js/bootstrap.min.js', [], Request::secure()) !!} {!! Html::script('template9/js/foodpicky.min.js', [], Request::secure()) !!} {{--{!! Html::script('js/bootbox.min.js') !!} {!! Html::script('template9/js/custom.js', [], Request::secure()) !!}--}} {!! Html::script(app()->environment('production') ? mix('template9/js/custom.js') : asset('template9/js/custom.js'), [], Request::secure()) !!} @endsection @section('content') @include('shared.template9.header') @yield('own-content') {{-- @include('shared.sections.footers') --}} @endsection