51 lines
1.8 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 name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2019-11-16 10:21:14 +03:00
2019-12-25 11:14:21 +03:00
<title>@yield('title')</title>
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 12:45:02 +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"><!--
2020-01-01 12:45:02 +03:00
var url = '{{ url("/") }}';
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
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(),
2020-01-03 14:04:00 +03:00
]); ?>;
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>
2019-11-16 10:21:14 +03:00
2019-12-25 11:14:21 +03:00
{{ session()->forget('flash_notification') }}
@stack('scripts')
2018-08-04 18:05:37 +03:00
@stack('head_end')
2017-09-14 22:21:00 +03:00
</head>