@php
use App\Models\Setting;
$setting = Setting::where('status', 1)->first();
@endphp
@isset($title)
{{ $title }}
@endisset
{!! SEOMeta::generate() !!}
{!! OpenGraph::generate() !!}
{!! Twitter::generate() !!}
{!! JsonLd::generate() !!}
@if (isset($setting))
@endif
{!! htmlScriptTagJsApi() !!}
@yield('custom-css')
{{-- Custom CSS --}}
@if ($setting->custom_css)
{!! $setting->custom_css !!}
@endif
{{-- PWA --}}
@laravelPWA
@if (isset($setting))
@if ($setting->analytics_id != "")
@endif
@if ($setting->google_tag != "")
@endif
@endif
{{-- Page Content --}}
@yield('content')
{{-- Cookie consent --}}
@include('cookie-consent::index')
@yield('custom-js')
{{-- Scripts --}}
@if (isset($setting))
@if ($setting->tawk_chat_key != "")
@endif
{{-- Custom JS --}}
@if ($setting->custom_js)
{!! $setting->custom_js !!}
@endif
@endif
{{-- Animation --}}