55 lines
1.4 KiB
PHP
Raw Normal View History

2022-06-01 10:15:55 +03:00
@props([
'title',
])
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">
2022-06-01 10:15:55 +03:00
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8; charset=ISO-8859-1"/>
2020-01-07 16:36:09 +03:00
2022-06-01 10:15:55 +03:00
<title>{!! $title !!} - @setting('company.name')</title>
2020-01-07 16:36:09 +03:00
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 -->
2022-06-01 10:15:55 +03:00
<link rel="stylesheet" href="{{ asset('public/css/print.css') }}" type="text/css">
2020-01-07 16:36:09 +03:00
@if (isset($currency_style) && $currency_style || in_array(app()->getLocale(), ['zh-CN', 'ja-JP', 'zh-TW']))
2021-09-07 20:57:25 +03:00
<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')
2022-06-01 10:15:55 +03:00
@livewireStyles
2020-01-07 16:36:09 +03:00
@stack('js')
@stack('scripts')
@stack('head_end')
</head>