@php if (isAppInstalled()) { $favicon = settings()->group('general')->get('site_favicon'); $favicon = !empty($favicon) ? Storage::disk(getCurrentDisk())->url($favicon) : asset('/images/favicon.png'); $google_analytics_code = settings()->group('advanced')->get('google_analytics_code'); $custom_head_code = settings()->group('advanced')->get('custom_head_code'); $custom_footer_code = settings()->group('advanced')->get('custom_footer_code'); } else { $favicon = asset('/images/favicon.png'); $google_analytics_code = ''; $custom_head_code = ''; $custom_footer_code = ''; } @endphp
@inertiaHead @if (config('alma.pwa_active') === true) @include('partials.pwa') @endif @include('feed::links') @if ($google_analytics_code !== '') {!! $google_analytics_code !!} @endif @if ($custom_head_code !== '') {!! $custom_head_code !!} @endif @routes @vite(['resources/js/app.js', "resources/js/Pages/{$page['component']}.vue"]) @inertia @if ($custom_footer_code !== '') {!! $custom_footer_code !!} @endif