55 lines
2.0 KiB
PHP
Raw Normal View History

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">
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2018-10-23 18:47:55 +03:00
2019-12-25 11:14:21 +03:00
<title>@yield('title') - @setting('company.name')</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
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
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">
2018-10-24 19:36:21 +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">
2018-10-23 18:47:55 +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">
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
2019-12-25 11:14:21 +03:00
<script type="text/javascript"><!--
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>
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>