Files
glovetleong 831cde4c3d pull
2021-08-19 09:22:38 +08:00

21 lines
885 B
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="ROBOTS" content="NOINDEX, FOLLOW">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ config('constants.site.title') }} @yield('title') Swagger Doc</title>
<link rel="icon" sizes="16x16" href="{!! asset('share/favicon.png') !!}" />
@yield('header_styles')
</head>
<body>
<noscript>
<strong>Please enable JavaScript to continue</strong>
</noscript>
<div id="app"></div>
<script type="text/javascript" src="{{ asset('swagger/js/index.js') . '?v=' . config('constants.version') }}"></script>
</body>
</html>