| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <title>{{ $site->site_title }} - {{ $site->site_tagline }}</title>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimal-ui">
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <!-- CSRF Token -->
- <meta name="csrf-token" content="{{ csrf_token() }}">
- <!-- Favicon icon -->
- <link rel="icon" href="{{ asset($site->favicon) }}" type="image/x-icon">
- <!-- Google font-->
- <link href="https://fonts.googleapis.com/css?family=Roboto:400,500" rel="stylesheet">
- <!-- Required Fremwork -->
- <link rel="stylesheet" type="text/css" href="{{ asset('bower_components/bootstrap/css/bootstrap.min.css') }}">
- <!-- waves.css -->
- <link rel="stylesheet" href="{{ asset('pages/waves/css/waves.min.css') }}" type="text/css" media="all">
- <!-- sweet alert framework -->
- <link rel="stylesheet" type="text/css" href="{{ asset('bower_components/sweetalert/css/sweetalert.css') }}">
- <!-- themify icon -->
- <link rel="stylesheet" type="text/css" href="{{ asset('assets/icon/themify-icons/themify-icons.css') }}">
- <!-- ico font -->
- <link rel="stylesheet" type="text/css" href="{{ asset('assets/icon/icofont/css/icofont.css') }}">
- <!-- Font Awesome -->
- <link rel="stylesheet" type="text/css" href="{{ asset('assets/icon/font-awesome/css/font-awesome.min.css') }}">
- <!-- scrollbar.css -->
- <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/jquery.mCustomScrollbar.css') }}">
- <!-- am chart export.css -->
- <link rel="stylesheet" href="https://www.amcharts.com/lib/3/plugins/export/export.css" type="text/css" media="all" />
- <!-- Date-time picker css -->
- <link rel="stylesheet" type="text/css" href="{{ asset('pages/advance-elements/css/bootstrap-datetimepicker.css') }}">
- <!-- Date-range picker css -->
- <link rel="stylesheet" type="text/css" href="{{ asset('bower_components/bootstrap-daterangepicker/css/daterangepicker.css') }}" />
- <!-- Date-Dropper css -->
- <link rel="stylesheet" type="text/css" href="{{ asset('bower_components/datedropper/css/datedropper.min.css') }}" />
- <!-- Color Picker css -->
- <link rel="stylesheet" type="text/css" href="{{ asset('bower_components/spectrum/css/spectrum.css') }}" />
- <!-- Mini-color css -->
- <link rel="stylesheet" type="text/css" href="{{ asset('bower_components/jquery-minicolors/css/jquery.minicolors.css') }}" />
- <!-- Data Table Css -->
- <link rel="stylesheet" type="text/css" href="{{ asset('bower_components/datatables.net-bs4/css/dataTables.bootstrap4.min.css') }}">
- <link rel="stylesheet" type="text/css" href="{{ asset('pages/data-table/css/buttons.dataTables.min.css') }}">
- <link rel="stylesheet" type="text/css" href="{{ asset('bower_components/datatables.net-responsive-bs4/css/responsive.bootstrap4.min.css') }}">
- <!-- animation nifty modal window effects css -->
- <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/component.css') }}">
- <!-- Notification.css -->
- <link rel="stylesheet" type="text/css" href="{{ asset('pages/notification/notification.css') }}">
- <!-- Animate.css -->
- <link rel="stylesheet" type="text/css" href="{{ asset('bower_components/animate.css/css/animate.css') }}">
- <!-- Select 2 css -->
- <link rel="stylesheet" href="{{ asset('bower_components/select2/css/select2.min.css') }}" />
- <!-- Multi Select css -->
- <link rel="stylesheet" type="text/css" href="{{ asset('bower_components/bootstrap-multiselect/css/bootstrap-multiselect.css') }}" />
- <link rel="stylesheet" type="text/css" href="{{ asset('bower_components/multiselect/css/multi-select.css') }}" />
- <!-- Style.css -->
- <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/style.css') }}">
- <!-- custom.css -->
- <link rel="stylesheet" type="text/css" href="{{ asset('pages/social-timeline/timeline.css') }}">
- <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/jquery.mCustomScrollbar.css') }}">
- <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/pcoded-horizontal.min.css') }}">
- <link rel="manifest" href="{{request()->root()}}/manifest.json">
|