26 lines
1.2 KiB
PHP
26 lines
1.2 KiB
PHP
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>{{ $title ?? config('app.name') }}</title>
|
|
|
|
<link rel="icon" href="/favicon.ico" sizes="any">
|
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
|
|
|
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
|
<link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet" />
|
|
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
@fluxAppearance
|
|
|
|
{{-- Leaflet CSS and JS for Live Tracking --}}
|
|
@if(request()->routeIs('live-tracking') || request()->routeIs('map-settings'))
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
|
|
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js" integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
|
|
|
|
{{-- Google Maps API (only if API key is configured) --}}
|
|
@if(config('services.maps.providers.google.enabled'))
|
|
<script src="https://maps.googleapis.com/maps/api/js?key={{ config('services.maps.providers.google.api_key') }}&libraries=geometry" defer></script>
|
|
@endif
|
|
@endif
|