84 lines
4.8 KiB
PHP
84 lines
4.8 KiB
PHP
|
|
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimal-ui">
|
||
|
|
<meta name="description" content="bootstrap admin template">
|
||
|
|
<meta name="author" content="">
|
||
|
|
<!-- CSRF Token -->
|
||
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||
|
|
<link rel="apple-touch-icon"href="{{ asset('assets/images/apple-touch-icon.png') }}">
|
||
|
|
@php
|
||
|
|
$setting = App\Setting::first();
|
||
|
|
@endphp
|
||
|
|
@if($setting->fabicon && trim($setting->fabicon)!='' && file_exists(public_path('uploads/setting_folder/'.$setting->fabicon)))
|
||
|
|
<link rel="shortcut icon"href='{{ asset(env("UPLOADS_FOLDER") . "/" . env("SETTING_FOLDER") . "/" . $setting->fabicon)}}'>
|
||
|
|
@else
|
||
|
|
<link rel="shortcut icon"href="{{ asset('assets/images/favicon.ico') }}">
|
||
|
|
@endif
|
||
|
|
|
||
|
|
<!-- STYLESHEETS -->
|
||
|
|
<link rel="stylesheet"href="{{ asset('global/css/bootstrap.min.css') }}">
|
||
|
|
<link rel="stylesheet"href="{{ asset('global/css/bootstrap-extend.min.css') }}">
|
||
|
|
<link rel="stylesheet"href="{{ asset('assets/css/site.min.css') }}">
|
||
|
|
<!-- STYLESHEETS -->
|
||
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('assets/admin/styles/notifyBar.css') }}">
|
||
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('assets/admin/styles/validationEngine.jquery.css') }}">
|
||
|
|
|
||
|
|
<!-- PLUGINS -->
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/vendor/animsition/animsition.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/vendor/asscrollable/asScrollable.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/vendor/switchery/switchery.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/vendor/intro-js/introjs.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/vendor/slidepanel/slidePanel.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/vendor/flag-icon-css/flag-icon.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/vendor/datatables.net-bs4/dataTables.bootstrap4.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/vendor/datatables.net-fixedheader-bs4/dataTables.fixedheader.bootstrap4.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/vendor/datatables.net-fixedcolumns-bs4/dataTables.fixedcolumns.bootstrap4.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/vendor/datatables.net-rowgroup-bs4/dataTables.rowgroup.bootstrap4.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/vendor/datatables.net-scroller-bs4/dataTables.scroller.bootstrap4.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/vendor/datatables.net-select-bs4/dataTables.select.bootstrap4.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/vendor/datatables.net-responsive-bs4/dataTables.responsive.bootstrap4.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/vendor/datatables.net-buttons-bs4/dataTables.buttons.bootstrap4.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('assets/examples/css/tables/datatable.css') }}">
|
||
|
|
<!-- PLUGINS -->
|
||
|
|
|
||
|
|
<!-- FONTS -->
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/fonts/font-awesome/font-awesome.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/fonts/web-icons/web-icons.min.css') }}">
|
||
|
|
<link rel="stylesheet" href="{{ asset('global/fonts/brand-icons/brand-icons.min.css') }}">
|
||
|
|
<!-- FONTS -->
|
||
|
|
|
||
|
|
<!--[if lt IE 9]>
|
||
|
|
<script src="{{ asset('global/vendor/html5shiv/html5shiv.min.js') }}"></script>
|
||
|
|
<![endif]-->
|
||
|
|
|
||
|
|
<!--[if lt IE 10]>
|
||
|
|
<script src="{{ asset('global/vendor/media-match/media.match.min.js') }}"></script>
|
||
|
|
<script src="{{ asset('global/vendor/respond/respond.min.js') }}"></script>
|
||
|
|
<![endif]-->
|
||
|
|
|
||
|
|
<!-- Scripts -->
|
||
|
|
<!-- CORE -->
|
||
|
|
<script src="{{ asset('global/vendor/jquery/jquery.js') }}"></script>
|
||
|
|
<script src="{{ asset('global/vendor/babel-external-helpers/babel-external-helpers.js') }}"></script>
|
||
|
|
<script src="{{ asset('global/vendor/popper-js/umd/popper.min.js') }}"></script>
|
||
|
|
<script src="{{ asset('global/vendor/bootstrap/bootstrap.js') }}"></script>
|
||
|
|
<script src="{{ asset('global/vendor/animsition/animsition.js') }}"></script>
|
||
|
|
<script src="{{ asset('global/vendor/mousewheel/jquery.mousewheel.js') }}"></script>
|
||
|
|
<script src="{{ asset('global/vendor/asscrollbar/jquery-asScrollbar.js') }}"></script>
|
||
|
|
<script src="{{ asset('global/vendor/asscrollable/jquery-asScrollable.js') }}"></script>
|
||
|
|
<script src="{{ asset('global/vendor/ashoverscroll/jquery-asHoverScroll.js') }}"></script>
|
||
|
|
<!-- CORE -->
|
||
|
|
|
||
|
|
<script type="text/javascript" src="{{ asset('assets/admin/script/jquery.notifyBar.js') }}"></script>
|
||
|
|
<script type="text/javascript" src="{{ asset('assets/admin/script/jquery.validationEngine.js') }}"></script>
|
||
|
|
<script type="text/javascript" src="{{ asset('assets/admin/script/jquery.validationEngine-en.js') }}"></script>
|
||
|
|
<script src="{{ asset('global/vendor/breakpoints/breakpoints.js') }}"></script>
|
||
|
|
<script>
|
||
|
|
Breakpoints();
|
||
|
|
</script>
|
||
|
|
<style type="text/css">
|
||
|
|
.modal-open .select2-container {
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
</style>
|