2020-01-07 16:36:09 +03:00
|
|
|
<head>
|
|
|
|
@stack('head_start')
|
|
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
|
2021-09-07 12:17:01 +03:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8; charset=ISO-8859-1"/>
|
2020-01-07 16:36:09 +03:00
|
|
|
|
|
|
|
<title>@yield('title') - @setting('company.name')</title>
|
|
|
|
|
2021-09-07 12:37:32 +03:00
|
|
|
<base href="{{ config('app.url') . '/' }}">
|
2021-01-18 18:49:37 +03:00
|
|
|
|
2020-01-07 16:36:09 +03:00
|
|
|
<!-- Favicon -->
|
|
|
|
<link rel="icon" href="{{ asset('public/img/favicon.ico') }}" type="image/png">
|
|
|
|
|
|
|
|
<!-- Css -->
|
2021-09-07 12:17:01 +03:00
|
|
|
<link rel="stylesheet" href="{{ asset('public/css/print.css?v=' . version('short')) }}" type="text/css">
|
2020-01-07 16:36:09 +03:00
|
|
|
|
2021-09-07 20:57:25 +03:00
|
|
|
@if (isset($currency_style) && $currency_style && in_array(app()->getLocale(), ['zh-CN', 'ja-JP', 'zh-TW']))
|
|
|
|
<style type="text/css">
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Firefly Sung';
|
|
|
|
font-weight: 'normal';
|
|
|
|
src: url('{{ asset("/public/css/fonts/firefly_sung_normal.ttf") }}') format("truetype");
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-family: 'Firefly Sung', sans-serif !important;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
@else
|
2020-01-07 16:36:09 +03:00
|
|
|
<style type="text/css">
|
|
|
|
* {
|
2021-09-07 20:57:25 +03:00
|
|
|
font-family: DejaVu Sans, sans-serif !important;
|
2020-01-07 16:36:09 +03:00
|
|
|
}
|
|
|
|
</style>
|
2021-09-07 20:57:25 +03:00
|
|
|
@endif
|
2020-01-07 16:36:09 +03:00
|
|
|
|
|
|
|
@stack('css')
|
|
|
|
|
|
|
|
@stack('stylesheet')
|
|
|
|
|
|
|
|
@stack('js')
|
|
|
|
|
|
|
|
@stack('scripts')
|
|
|
|
|
|
|
|
@stack('head_end')
|
|
|
|
</head>
|