Files
ladill-frontdesk/resources/views/partials/favicon.blade.php
T
isaaccladandCursor 9e2d79936c
Deploy Ladill Frontdesk / deploy (push) Failing after 35s
Test / test (push) Failing after 2m45s
Initial Ladill Frontdesk release with deploy pipeline.
Visitor management app with SSO, kiosk, badges, reports, and Gitea CI deploy to frontdesk.ladill.com.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-27 20:37:15 +00:00

9 lines
471 B
PHP

@php
$svgVer = @filemtime(public_path('favicon.svg')) ?: '1';
$icoVer = @filemtime(public_path('favicon.ico')) ?: '1';
@endphp
<link rel="icon" type="image/svg+xml" href="{{ asset('favicon.svg') }}?v={{ $svgVer }}">
<link rel="alternate icon" href="{{ asset('favicon.ico') }}?v={{ $icoVer }}" sizes="any">
<link rel="shortcut icon" href="{{ asset('favicon.svg') }}?v={{ $svgVer }}">
<link rel="apple-touch-icon" href="{{ asset('favicon.svg') }}?v={{ $svgVer }}">