@include('layouts.meta_tag')
@php
$lang = (request()->cookie('lang')) ? request()->cookie('lang') : "en";
$extlang = ($lang == "he") ? '_he' : "";
@endphp
@yield('style')
@yield('fonts')
@if(config("app.Google_Analytics_ID")!=null)
@include('layouts.google_analytics')
@endif
@if(Request::is('/') or Request::is('home'))
@include('layouts.navbar')
@else
@include('layouts.other-pages-navbar')
@endif
@yield('body')
@include('layouts.footer')
@yield('script')
@if(config("app.Google_Map_Key")!=null)
@include('layouts.google_map')
@endif