86 lines
2.7 KiB
PHP
Raw Normal View History

2022-06-01 10:15:55 +03:00
@props([
'title',
])
2017-09-14 22:21:00 +03:00
<head>
2018-08-04 18:05:37 +03:00
@stack('head_start')
2019-12-25 11:14:21 +03:00
<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">
2020-01-23 18:15:27 +03:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8; charset=ISO-8859-1"/>
2018-08-04 18:05:37 +03:00
2022-06-01 10:15:55 +03:00
<title>{!! $title !!} - @setting('company.name')</title>
2019-11-16 10:21:14 +03:00
2021-01-19 12:52:28 +03:00
<base href="{{ config('app.url') . '/' }}">
2022-06-01 10:15:55 +03:00
<x-layouts.pwa.head />
2019-11-16 10:21:14 +03:00
2022-12-07 17:20:25 +03:00
<link rel="stylesheet" href="{{ asset('public/css/custom_loading.css?v=' . version('short')) }}" type="text/css">
2019-12-25 11:14:21 +03:00
<!-- Favicon -->
<link rel="icon" href="{{ asset('public/img/favicon.ico') }}" type="image/png">
2019-11-16 10:21:14 +03:00
2022-06-01 10:15:55 +03:00
<!--Icons-->
<link rel="stylesheet" href="{{ asset('public/css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
2019-11-16 10:21:14 +03:00
2022-06-01 10:15:55 +03:00
<!-- Font -->
<link rel="stylesheet" href="{{ asset('public/vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
2019-11-16 10:21:14 +03:00
2019-12-25 11:14:21 +03:00
<!-- Css -->
2022-06-01 10:15:55 +03:00
<link rel="stylesheet" href="{{ asset('public/css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
<link rel="stylesheet" href="{{ asset('public/css//third_party/vue-html-editor.css?v=' . version('short')) }}" type="text/css">
2020-01-01 08:45:37 +03:00
<link rel="stylesheet" href="{{ asset('public/css/element.css?v=' . version('short')) }}" type="text/css">
<link rel="stylesheet" href="{{ asset('public/css/app.css?v=' . version('short')) }}" type="text/css">
2020-01-01 08:45:37 +03:00
2019-12-25 11:14:21 +03:00
@stack('css')
2019-11-16 10:21:14 +03:00
2019-12-25 11:14:21 +03:00
@stack('stylesheet')
2019-11-16 10:21:14 +03:00
2022-06-01 10:15:55 +03:00
<style type="text/css">
.app-documentation > h1 {
text-align: center;
font-size: 1.75rem;
line-height: 2rem;
}
.app-documentation > p,
.app-documentation > li {
font-size: 1rem;
line-height: 1.5rem;
}
.app-documentation > ul {
list-style-type: disc;
list-style-position: inside;
}
</style>
2021-01-07 16:16:40 +03:00
@livewireStyles
2019-12-25 11:14:21 +03:00
<script type="text/javascript"><!--
2021-04-16 00:59:43 +03:00
var url = '{{ url("/" . company_id()) }}';
2022-06-01 10:15:55 +03:00
var app_home = '{{ route("apps.home.index") }}';
var app_url = '{{ config("app.url") }}';
var aka_currency = {!! !empty($currency) ? $currency : 'false' !!};
2019-12-25 11:14:21 +03:00
//--></script>
2019-11-16 10:21:14 +03:00
<x-script.exceptions.trackers />
2019-12-25 11:14:21 +03:00
@stack('js')
2019-11-16 10:21:14 +03:00
2019-12-25 11:14:21 +03:00
<script type="text/javascript"><!--
window.Laravel = <?php echo json_encode([
'csrfToken' => csrf_token(),
]); ?>;
2019-11-16 10:21:14 +03:00
2019-12-25 11:14:21 +03:00
var flash_notification = {!! (session()->has('flash_notification')) ? json_encode(session()->get('flash_notification')) : 'false' !!};
//--></script>
{{ session()->forget('flash_notification') }}
@stack('scripts')
2019-11-16 10:21:14 +03:00
2018-08-04 18:05:37 +03:00
@stack('head_end')
2017-09-14 22:21:00 +03:00
</head>