@yield("ld-data") @routes {{-- Style --}} @include('website.partials.analytics') @include('website.partials.links') @yield('css') @php $css_data = !empty($setting->header_css); $tag_start = strstr(strtolower($setting->header_css), ''); $js_data = !empty($setting->header_script); $script_tag_start = strstr(strtolower($setting->header_script), ''); @endphp @if($css_data && $tag_start && $tag_end) {!! $setting->header_css !!} @endif @if($js_data && $script_tag_start && $script_tag_end) {!! $setting->header_script !!} @endif {{-- Header --}} @include('website.partials.header') {{-- Main --}} @yield('main') {{-- footer --}} @if (!Route::is('candidate.*') && !Route::is('company.*')) @include('website.partials.footer') @endif @include('website.partials.scripts') @yield('script') @php $js_data = !empty($setting->body_script); $script_tag_start = strstr(strtolower($setting->body_script), ''); @endphp @if($js_data && $script_tag_start && $script_tag_end) {!! $setting->body_script !!} @endif