mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 07:17:55 +01:00
14 lines
387 B
PHP
14 lines
387 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{app()->getLocale()}}">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
|
|
<title>@lang('OpenStaManager')</title>
|
|
<link href="{{ mix('css/app.css') }}" rel="stylesheet" />
|
|
<script src="{{ mix('js/app.js') }}" defer></script>
|
|
</head>
|
|
<body>
|
|
@inertia
|
|
</body>
|
|
</html>
|