[0924b6c] | 1 | <meta charset="UTF-8">
|
---|
| 2 | <meta name="csrf-token" content="{{ csrf_token() }}">
|
---|
| 3 | <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
---|
| 4 | <meta http-equiv="X-UA-Compatible" content="ie=edge">
|
---|
| 5 | <meta http-equiv="Content-Language" content="en" />
|
---|
| 6 | <meta name="msapplication-TileColor" content="#2d89ef">
|
---|
| 7 | <meta name="theme-color" content="#4188c9">
|
---|
| 8 | <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
---|
| 9 | <meta name="apple-mobile-web-app-capable" content="yes">
|
---|
| 10 | <meta name="mobile-web-app-capable" content="yes">
|
---|
| 11 | <meta name="HandheldFriendly" content="True">
|
---|
| 12 | <meta name="MobileOptimized" content="320">
|
---|
| 13 | <link rel="icon" href="{{ asset("assets/images/logo1.png") }}" type="image/x-icon" />
|
---|
| 14 | <link rel="shortcut icon" type="image/x-icon" href="{{ asset("assets/images/logo1.png") }}" />
|
---|
| 15 |
|
---|
| 16 | <title>@yield("title")</title>
|
---|
| 17 |
|
---|
| 18 | <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
|
---|
| 19 | <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,500,500i,600,600i,700,700i&subset=latin-ext">
|
---|
| 20 |
|
---|
| 21 | <script src="{{ asset("assets/js/require.min.js") }}"></script>
|
---|
| 22 | <script>
|
---|
| 23 | requirejs.config({
|
---|
| 24 | baseUrl: '{{ config("app.url") }}'
|
---|
| 25 | });
|
---|
| 26 | </script>
|
---|
| 27 | <!-- Dashboard Core -->
|
---|
| 28 | <link href="{{ asset("assets/css/dashboard.css") }}" rel="stylesheet" />
|
---|
| 29 | <script src="{{ asset("assets/js/dashboard.js") }}"></script>
|
---|
| 30 | <!-- c3.js Charts Plugin -->
|
---|
| 31 | <link href="{{ asset("assets/plugins/charts-c3/plugin.css") }}" rel="stylesheet" />
|
---|
| 32 | <script src="{{ asset("assets/plugins/charts-c3/plugin.js") }}"></script>
|
---|
| 33 | <!-- Google Maps Plugin -->
|
---|
| 34 | <link href="{{ asset("assets/plugins/maps-google/plugin.css") }}" rel="stylesheet" />
|
---|
| 35 | <script src="{{ asset("assets/plugins/maps-google/plugin.js") }}"></script>
|
---|
| 36 | <!-- Input Mask Plugin -->
|
---|
| 37 | <script src="{{ asset("assets/plugins/input-mask/plugin.js") }}"></script>
|
---|
| 38 | <!-- Data Tables Plugin -->
|
---|
| 39 | <link href="{{ asset("assets/plugins/dataTables/datatables-bs4.min.css") }}" rel="stylesheet" />
|
---|
| 40 | <!-- Quill Editor Plugin -->
|
---|
| 41 | <link href="{{ asset("assets/plugins/quilljs/plugin.css") }}" rel="stylesheet" />
|
---|
| 42 | <!-- Quill Editor Plugin -->
|
---|
| 43 | <link href="{{ asset("assets/plugins/colorpickle/plugin.css") }}" rel="stylesheet" />
|
---|
| 44 | <link href="{{ asset("assets/plugins/colorpickle/plugin-theme.css") }}" rel="stylesheet" />
|
---|
| 45 | <link href="{{ asset("assets/plugins/noty/css/noty.min.css") }}" rel="stylesheet" />
|
---|
| 46 | <script src="{{ asset("assets/js/dash_app.js") }}"></script>
|
---|