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