55 lines
2.0 KiB
PHP
Raw Normal View History

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
2019-12-25 11:14:21 +03:00
<title>@yield('title') - @setting('company.name')</title>
2019-11-16 10:21:14 +03:00
2019-12-25 11:14:21 +03:00
@include('partials.pwa.pwa')
2019-11-16 10:21:14 +03:00
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
2019-12-25 11:14:21 +03:00
<!-- Font -->
<link rel="stylesheet" href="{{ asset('public/vendor/opensans/css/opensans.css?v=' . version('short')) }}" type="text/css">
2019-11-16 10:21:14 +03:00
2019-12-25 11:14:21 +03:00
<!-- Icons -->
<link rel="stylesheet" href="{{ asset('public/vendor/nucleo/css/nucleo.css?v=' . version('short')) }}" type="text/css">
<link rel="stylesheet" href="{{ asset('public/vendor/fontawesome/css/all.min.css?v=' . version('short')) }}" type="text/css">
2019-11-16 10:21:14 +03:00
2019-12-25 11:14:21 +03:00
<!-- Css -->
<link rel="stylesheet" href="{{ asset('public/css/argon.css?v=' . version('short')) }}" type="text/css">
2020-01-01 08:45:37 +03:00
<link rel="stylesheet" href="{{ asset('public/css/akaunting-color.css?v=' . version('short')) }}" type="text/css">
<link rel="stylesheet" href="{{ asset('public/css/custom.css?v=' . version('short')) }}" type="text/css">
<link rel="stylesheet" href="{{ asset('public/css/element.css?v=' . version('short')) }}" type="text/css">
2019-11-16 10:21:14 +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
2019-12-25 11:14:21 +03:00
<script type="text/javascript"><!--
var url = '{{ url("/") }}';
var app_url = '{{ config("app.url") }}';
2019-12-25 11:14:21 +03:00
//--></script>
2019-11-16 10:21:14 +03:00
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>