2022-06-01 10:15:55 +03:00
|
|
|
@props([
|
|
|
|
'title',
|
|
|
|
])
|
|
|
|
|
2018-10-23 18:47:55 +03:00
|
|
|
<head>
|
|
|
|
@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">
|
2021-01-19 15:56:22 +03:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8; charset=ISO-8859-1"/>
|
2018-10-23 18:47:55 +03:00
|
|
|
|
2022-06-01 10:15:55 +03:00
|
|
|
<title>{!! $title !!}</title>
|
2018-10-23 18:47:55 +03:00
|
|
|
|
2021-01-19 12:52:28 +03:00
|
|
|
<base href="{{ config('app.url') . '/' }}">
|
2021-01-18 18:49:37 +03:00
|
|
|
|
2022-06-01 10:15:55 +03:00
|
|
|
<x-layouts.pwa.head />
|
|
|
|
|
2019-12-25 11:14:21 +03:00
|
|
|
<!-- Favicon -->
|
|
|
|
<link rel="icon" href="{{ asset('public/img/favicon.ico') }}" type="image/png">
|
2018-10-23 18:47:55 +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">
|
2018-10-24 19:36:21 +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">
|
2018-10-23 18:47:55 +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/app.css') }}" type="text/css">
|
2018-10-23 18:47:55 +03:00
|
|
|
|
2019-12-25 11:14:21 +03:00
|
|
|
@stack('css')
|
2018-10-23 18:47:55 +03:00
|
|
|
|
2019-12-25 11:14:21 +03:00
|
|
|
@stack('stylesheet')
|
2018-10-23 18:47:55 +03:00
|
|
|
|
2021-01-19 15:56:22 +03:00
|
|
|
@livewireStyles
|
|
|
|
|
2019-12-25 11:14:21 +03:00
|
|
|
<script type="text/javascript"><!--
|
2021-04-19 19:23:11 +03:00
|
|
|
var url = '{{ url("/" . company_id()) }}';
|
2020-04-26 06:07:27 -04:00
|
|
|
var app_url = '{{ config("app.url") }}';
|
2019-12-25 11:14:21 +03:00
|
|
|
//--></script>
|
2018-10-23 18:47:55 +03:00
|
|
|
|
2019-12-25 11:14:21 +03:00
|
|
|
@stack('js')
|
2018-10-23 18:47:55 +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-10-23 18:47:55 +03:00
|
|
|
@stack('head_end')
|
|
|
|
</head>
|