Files
portal/app/resources/views/welcome.blade.php
T
2026-06-19 15:02:14 +03:00

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>