b5eb0eb1cd
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
17 lines
608 B
PHP
17 lines
608 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>{{ config('app.name', 'Лидерра') }}</title>
|
|
<meta name="support-email" content="{{ config('services.support.email') }}">
|
|
@vite(['resources/css/app.css', 'resources/js/app.ts'])
|
|
@if(config('services.jivosite.widget_id'))
|
|
<script src="https://code.jivo.ru/widget/{{ config('services.jivosite.widget_id') }}" async></script>
|
|
@endif
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
</html>
|