30 lines
942 B
PHP
30 lines
942 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title inertia>{{ config('app.name', 'Laravel') }}</title>
|
|
|
|
@php
|
|
$settings = \Illuminate\Support\Facades\Cache::get('system_settings', []);
|
|
$favicon = $settings['app_logo'] ?? null;
|
|
@endphp
|
|
|
|
@if($favicon)
|
|
<link rel="icon" type="image/x-icon" href="{{ $favicon }}">
|
|
@endif
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
|
|
|
|
<!-- Scripts -->
|
|
@routes
|
|
@viteReactRefresh
|
|
@vite(['resources/js/app.tsx', "resources/js/Pages/{$page['component']}.tsx"])
|
|
@inertiaHead
|
|
</head>
|
|
<body class="font-sans antialiased">
|
|
@inertia
|
|
</body>
|
|
</html>
|