@extends('layouts.app') @php $class_background = ' '.((\Request::route()->getName() != 'welcome' && \Request::route()->getName() != 'home') ? ' backcolor':($template_config->template->background->type ?? '')).' '.($template_config->template->background->class ?? ''); $class_slider_notext = (count($template_config->slider->element_seccion) > 0 && $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('template3/css/app.css', ['id' => 'mainStyles', 'media' => 'screen'], Request::secure()) !!} --}} {!! Html::style(app()->environment('production') ? mix('template3/css/app.css') : asset('template3/css/app.css'), ['id' => 'mainStyles', 'media' => 'screen'], Request::secure()) !!} @endsection @section('extra-scripts') @parent {{-- custom scripts --}} {{-- {!! Html::script('template3/js/jquery.min.js', [], Request::secure()) !!} --}} {!! Html::script('template3/js/tether.min.js', [], Request::secure()) !!} {!! Html::script('template3/js/bootstrap.min.js', [], Request::secure()) !!} {!! Html::script('template3/js/foodpicky.min.js', [], Request::secure()) !!} {{--{!! Html::script('js/bootbox.min.js') !!} {!! Html::script('template3/js/custom.js', [], Request::secure()) !!}--}} {!! Html::script(app()->environment('production') ? mix('template3/js/custom.js') : asset('template3/js/custom.js'), [], Request::secure()) !!} @endsection @section('content') @include('shared.template3.header') @yield('own-content') @endsection