Theme3.2.0
This commit is contained in:
12
public/lb-faveo/adminlte3/css/adminlte3.2.0.min.css
vendored
Normal file
12
public/lb-faveo/adminlte3/css/adminlte3.2.0.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
7
public/lb-faveo/adminlte3/js/adminlte3.2.0.min.js
vendored
Normal file
7
public/lb-faveo/adminlte3/js/adminlte3.2.0.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
13
public/lb-faveo/adminlte3/plugins/overlayScrollbars/overlayScrollbars3.2.0.min.css
vendored
Normal file
13
public/lb-faveo/adminlte3/plugins/overlayScrollbars/overlayScrollbars3.2.0.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
13
public/lb-faveo/adminlte3/plugins/overlayScrollbars/overlayScrollbars3.2.0.min.js
vendored
Normal file
13
public/lb-faveo/adminlte3/plugins/overlayScrollbars/overlayScrollbars3.2.0.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1315
public/lb-faveo/css/jaquery.ui.3.2.0.css
vendored
Normal file
1315
public/lb-faveo/css/jaquery.ui.3.2.0.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2
public/lb-faveo/js/jquery-3.2.0.min.js
vendored
Normal file
2
public/lb-faveo/js/jquery-3.2.0.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
6
public/lb-faveo/js/jquery.ui.3.2.0.js
vendored
Normal file
6
public/lb-faveo/js/jquery.ui.3.2.0.js
vendored
Normal file
File diff suppressed because one or more lines are too long
0
public/lb-faveo/js/popper.3.2.0.min.js
vendored
Normal file
0
public/lb-faveo/js/popper.3.2.0.min.js
vendored
Normal file
1
public/lb-faveo/plugins/datatables/dataTable.bootstrap.3.2.0.css
vendored
Normal file
1
public/lb-faveo/plugins/datatables/dataTable.bootstrap.3.2.0.css
vendored
Normal file
File diff suppressed because one or more lines are too long
184
public/lb-faveo/plugins/datatables/dataTables.bootstrap4.3.2.0.js
vendored
Normal file
184
public/lb-faveo/plugins/datatables/dataTables.bootstrap4.3.2.0.js
vendored
Normal file
@@ -0,0 +1,184 @@
|
||||
/*! DataTables Bootstrap 4 integration
|
||||
* ©2011-2017 SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
|
||||
/**
|
||||
* DataTables integration for Bootstrap 4. This requires Bootstrap 4 and
|
||||
* DataTables 1.10 or newer.
|
||||
*
|
||||
* This file sets the defaults and adds options to DataTables to style its
|
||||
* controls using Bootstrap. See http://datatables.net/manual/styling/bootstrap
|
||||
* for further information.
|
||||
*/
|
||||
(function( factory ){
|
||||
if ( typeof define === 'function' && define.amd ) {
|
||||
// AMD
|
||||
define( ['jquery', 'datatables.net'], function ( $ ) {
|
||||
return factory( $, window, document );
|
||||
} );
|
||||
}
|
||||
else if ( typeof exports === 'object' ) {
|
||||
// CommonJS
|
||||
module.exports = function (root, $) {
|
||||
if ( ! root ) {
|
||||
root = window;
|
||||
}
|
||||
|
||||
if ( ! $ || ! $.fn.dataTable ) {
|
||||
// Require DataTables, which attaches to jQuery, including
|
||||
// jQuery if needed and have a $ property so we can access the
|
||||
// jQuery object that is used
|
||||
$ = require('datatables.net')(root, $).$;
|
||||
}
|
||||
|
||||
return factory( $, root, root.document );
|
||||
};
|
||||
}
|
||||
else {
|
||||
// Browser
|
||||
factory( jQuery, window, document );
|
||||
}
|
||||
}(function( $, window, document, undefined ) {
|
||||
'use strict';
|
||||
var DataTable = $.fn.dataTable;
|
||||
|
||||
|
||||
/* Set the defaults for DataTables initialisation */
|
||||
$.extend( true, DataTable.defaults, {
|
||||
dom:
|
||||
"<'row'<'col-sm-12 col-md-6'l><'col-sm-12 col-md-6'f>>" +
|
||||
"<'row'<'col-sm-12'tr>>" +
|
||||
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
|
||||
renderer: 'bootstrap'
|
||||
} );
|
||||
|
||||
|
||||
/* Default class modification */
|
||||
$.extend( DataTable.ext.classes, {
|
||||
sWrapper: "dataTables_wrapper dt-bootstrap4",
|
||||
sFilterInput: "form-control form-control-sm",
|
||||
sLengthSelect: "custom-select custom-select-sm form-control form-control-sm",
|
||||
sProcessing: "dataTables_processing card",
|
||||
sPageButton: "paginate_button page-item"
|
||||
} );
|
||||
|
||||
|
||||
/* Bootstrap paging button renderer */
|
||||
DataTable.ext.renderer.pageButton.bootstrap = function ( settings, host, idx, buttons, page, pages ) {
|
||||
var api = new DataTable.Api( settings );
|
||||
var classes = settings.oClasses;
|
||||
var lang = settings.oLanguage.oPaginate;
|
||||
var aria = settings.oLanguage.oAria.paginate || {};
|
||||
var btnDisplay, btnClass, counter=0;
|
||||
|
||||
var attach = function( container, buttons ) {
|
||||
var i, ien, node, button;
|
||||
var clickHandler = function ( e ) {
|
||||
e.preventDefault();
|
||||
if ( !$(e.currentTarget).hasClass('disabled') && api.page() != e.data.action ) {
|
||||
api.page( e.data.action ).draw( 'page' );
|
||||
}
|
||||
};
|
||||
|
||||
for ( i=0, ien=buttons.length ; i<ien ; i++ ) {
|
||||
button = buttons[i];
|
||||
|
||||
if ( Array.isArray( button ) ) {
|
||||
attach( container, button );
|
||||
}
|
||||
else {
|
||||
btnDisplay = '';
|
||||
btnClass = '';
|
||||
|
||||
switch ( button ) {
|
||||
case 'ellipsis':
|
||||
btnDisplay = '…';
|
||||
btnClass = 'disabled';
|
||||
break;
|
||||
|
||||
case 'first':
|
||||
btnDisplay = lang.sFirst;
|
||||
btnClass = button + (page > 0 ?
|
||||
'' : ' disabled');
|
||||
break;
|
||||
|
||||
case 'previous':
|
||||
btnDisplay = lang.sPrevious;
|
||||
btnClass = button + (page > 0 ?
|
||||
'' : ' disabled');
|
||||
break;
|
||||
|
||||
case 'next':
|
||||
btnDisplay = lang.sNext;
|
||||
btnClass = button + (page < pages-1 ?
|
||||
'' : ' disabled');
|
||||
break;
|
||||
|
||||
case 'last':
|
||||
btnDisplay = lang.sLast;
|
||||
btnClass = button + (page < pages-1 ?
|
||||
'' : ' disabled');
|
||||
break;
|
||||
|
||||
default:
|
||||
btnDisplay = button + 1;
|
||||
btnClass = page === button ?
|
||||
'active' : '';
|
||||
break;
|
||||
}
|
||||
|
||||
if ( btnDisplay ) {
|
||||
node = $('<li>', {
|
||||
'class': classes.sPageButton+' '+btnClass,
|
||||
'id': idx === 0 && typeof button === 'string' ?
|
||||
settings.sTableId +'_'+ button :
|
||||
null
|
||||
} )
|
||||
.append( $('<a>', {
|
||||
'href': '#',
|
||||
'aria-controls': settings.sTableId,
|
||||
'aria-label': aria[ button ],
|
||||
'data-dt-idx': counter,
|
||||
'tabindex': settings.iTabIndex,
|
||||
'class': 'page-link'
|
||||
} )
|
||||
.html( btnDisplay )
|
||||
)
|
||||
.appendTo( container );
|
||||
|
||||
settings.oApi._fnBindAction(
|
||||
node, {action: button}, clickHandler
|
||||
);
|
||||
|
||||
counter++;
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// IE9 throws an 'unknown error' if document.activeElement is used
|
||||
// inside an iframe or frame.
|
||||
var activeEl;
|
||||
|
||||
try {
|
||||
// Because this approach is destroying and recreating the paging
|
||||
// elements, focus is lost on the select button which is bad for
|
||||
// accessibility. So we want to restore focus once the draw has
|
||||
// completed
|
||||
activeEl = $(host).find(document.activeElement).data('dt-idx');
|
||||
}
|
||||
catch (e) {}
|
||||
|
||||
attach(
|
||||
$(host).empty().html('<ul class="pagination"/>').children('ul'),
|
||||
buttons
|
||||
);
|
||||
|
||||
if ( activeEl !== undefined ) {
|
||||
$(host).find( '[data-dt-idx='+activeEl+']' ).trigger('focus');
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
return DataTable;
|
||||
}));
|
15345
public/lb-faveo/plugins/datatables/jquery.dataTables.3.2.0.js
vendored
Normal file
15345
public/lb-faveo/plugins/datatables/jquery.dataTables.3.2.0.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1578
public/lb-faveo/plugins/daterangepicker/daterangepicker.3.2.0.js
vendored
Normal file
1578
public/lb-faveo/plugins/daterangepicker/daterangepicker.3.2.0.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
18083
public/lb-faveo/plugins/moment/moment.3.2.0.js
vendored
Normal file
18083
public/lb-faveo/plugins/moment/moment.3.2.0.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
public/lb-faveo/plugins/select2/select2.3.2.0.min.css
vendored
Normal file
1
public/lb-faveo/plugins/select2/select2.3.2.0.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2
public/lb-faveo/plugins/select2/select2.full.3.2.0.min.css.js
vendored
Normal file
2
public/lb-faveo/plugins/select2/select2.full.3.2.0.min.css.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/lb-faveo/plugins/summernote/summernote-bd4.3.2.0.min.css
vendored
Normal file
1
public/lb-faveo/plugins/summernote/summernote-bd4.3.2.0.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2
public/lb-faveo/plugins/summernote/summernote-bs4.3.2.0.min.js
vendored
Normal file
2
public/lb-faveo/plugins/summernote/summernote-bs4.3.2.0.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -7,44 +7,44 @@
|
||||
<!-- faveo favicon -->
|
||||
<link href="{{asset("lb-faveo/media/images/favicon.ico")}}" rel="shortcut icon">
|
||||
<!-- Bootstrap 4.3.1 -->
|
||||
<link href="{{asset("lb-faveo/css/bootstrap4.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
{{-- <link href="{{asset("lb-faveo/css/bootstrap4.min.css")}}" rel="stylesheet" type="text/css" />--}}
|
||||
|
||||
<!-- Font Awesome Icons -->
|
||||
<link href="{{asset("lb-faveo/css/font-awesome-5.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
|
||||
<!-- Ionicons -->
|
||||
<link href="{{asset("lb-faveo/css/ionicons.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Theme style -->
|
||||
<link href="{{asset("lb-faveo/adminlte3/css/adminlte3.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<link href="{{asset("lb-faveo/adminlte3/plugins/overlayScrollbars/overlayScrollbars.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
<!-- Theme style -->
|
||||
<link href="{{asset("lb-faveo/adminlte3/css/adminlte3.2.0.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<link href="{{asset("lb-faveo/adminlte3/plugins/overlayScrollbars/overlayScrollbars3.2.0.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<link href="{{asset("lb-faveo/css/editor.css")}}" rel="stylesheet" type="text/css"/>
|
||||
|
||||
<link href="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.css")}}" rel="stylesheet" type="text/css"/>
|
||||
<link href="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.3.2.0.css")}}" rel="stylesheet" type="text/css"/>
|
||||
|
||||
<link href="{{asset("lb-faveo/css/jquery.rating.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
|
||||
<!-- Select2 -->
|
||||
<link href="{{asset("lb-faveo/plugins/select2/select2.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{asset("lb-faveo/plugins/select2/select2.3.2.0.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<link href="{{asset("css/close-button.css")}}" rel="stylesheet" type="text/css" />
|
||||
<!--Daterangepicker-->
|
||||
<link rel="stylesheet" href="{{asset("lb-faveo/css/bootstrap-datetimepicker4.7.14.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<link href="{{asset("lb-faveo/plugins/summernote/summernote-bs4.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{asset("lb-faveo/plugins/summernote/summernote-bs4.3.2.0.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<link href="{{asset("lb-faveo/css/jquery.ui.css")}}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{asset("lb-faveo/css/jquery.ui.3.2.0.css")}}" rel="stylesheet" type="text/css" />
|
||||
<!-- Colorpicker -->
|
||||
|
||||
<link href="{{asset("lb-faveo/plugins/colorpicker/bootstrap-colorpicker.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<script src="{{asset("lb-faveo/js/jquery-3.4.1.min.js")}}" type="text/javascript"></script>
|
||||
<link href="{{asset("lb-faveo/plugins/colorpicker/bootstrap-colorpicker.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<script src="{{asset("lb-faveo/js/jquery-3.2.0.min.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/js/jquery-migrate.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/js/jquery.ui.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/js/popper.min.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/js/jquery.ui.3.2.0.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/js/popper.3.2.0.min.js")}}" type="text/javascript"></script>
|
||||
<!-- Bootstrap 3.3.2 JS -->
|
||||
<script src="{{asset("lb-faveo/js/bootstrap4.min.js")}}" type="text/javascript"></script>
|
||||
@yield('HeadInclude')
|
||||
@@ -52,7 +52,7 @@
|
||||
<style type="text/css">
|
||||
|
||||
.dataTables_wrapper table {display: table !important;}
|
||||
|
||||
|
||||
.product-description { overflow: visible !important;white-space: unset !important; }
|
||||
|
||||
.noti_User { color: #6c757d !important; }
|
||||
@@ -115,12 +115,12 @@
|
||||
<div class="wrapper">
|
||||
|
||||
<nav class="main-header navbar navbar-expand navbar-dark navbar-orange">
|
||||
|
||||
|
||||
<!-- Sidebar toggle button-->
|
||||
<ul class="navbar-nav">
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
|
||||
|
||||
<a class="nav-link" data-widget="pushmenu" href="#" role="button"><i class="fas fa-bars"></i></a>
|
||||
</li>
|
||||
</ul>
|
||||
@@ -142,7 +142,7 @@
|
||||
</ul>
|
||||
|
||||
<ul class="navbar-nav ml-auto">
|
||||
|
||||
|
||||
<li class="nav-item d-none d-sm-inline-block">
|
||||
<a href="{{url('admin')}}" class="nav-link">{!! Lang::get('lang.admin_panel') !!}</a>
|
||||
</li>
|
||||
@@ -152,25 +152,25 @@
|
||||
<li class="nav-item dropdown notifications-menu" id="myDropdown">
|
||||
|
||||
<a href="#" class="nav-link" data-toggle="dropdown" onclick="myFunction()">
|
||||
|
||||
|
||||
<i class="fas fa-bell"></i>
|
||||
|
||||
|
||||
<span class="badge badge-warning navbar-badge" id="count">{!! $notifications->count() !!}</span>
|
||||
</a>
|
||||
|
||||
<div class="dropdown-menu dropdown-menu-xl dropdown-menu-right">
|
||||
|
||||
|
||||
<div id="alert11" class="alert alert-success alert-dismissable" style="display:none;">
|
||||
|
||||
<button id="dismiss11" type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
|
||||
|
||||
<h4><i class="icon fas fa-check"></i>Alert!</h4>
|
||||
|
||||
<div id="message-success1"></div>
|
||||
</div>
|
||||
|
||||
<ul class="products-list product-list-in-card pl-2 pr-2" style="height: 350px;overflow-y: scroll;">
|
||||
|
||||
|
||||
<li class="dropdown-header">You have {!! $notifications->count() !!} notifications.
|
||||
|
||||
<a class="float-right" id="read-all" href="#">Mark all as read.</a>
|
||||
@@ -183,17 +183,17 @@
|
||||
@if($notification->is_read == 1)
|
||||
|
||||
<li class="item" class="task">
|
||||
|
||||
|
||||
<div class="product-img">
|
||||
|
||||
|
||||
<img src="{{$notification -> users -> profile_pic}}" alt="Product Image" class="img-size-50 img-circle">
|
||||
</div>
|
||||
|
||||
|
||||
<div class="product-info">
|
||||
|
||||
|
||||
<span class="product-description">
|
||||
|
||||
<a href="{!! route('user.show', $notification->notification->model_id) !!}" id="{{$notification -> notification_id}}"
|
||||
|
||||
<a href="{!! route('user.show', $notification->notification->model_id) !!}" id="{{$notification -> notification_id}}"
|
||||
class='noti_User'>{!! $notification->notification->type->message !!}
|
||||
</a>
|
||||
</span>
|
||||
@@ -203,17 +203,17 @@
|
||||
@else
|
||||
|
||||
<li class="item">
|
||||
|
||||
|
||||
<div class="product-img">
|
||||
|
||||
|
||||
<img src="{{$notification -> users -> profile_pic}}" alt="Product Image" class="img-size-50 img-circle">
|
||||
</div>
|
||||
|
||||
|
||||
<div class="product-info">
|
||||
|
||||
|
||||
<span class="product-description">
|
||||
|
||||
<a href="{!! route('user.show', $notification->notification->model_id) !!}" id="{{$notification -> notification_id}}"
|
||||
|
||||
<a href="{!! route('user.show', $notification->notification->model_id) !!}" id="{{$notification -> notification_id}}"
|
||||
class='noti_User'>{!! $notification->notification->type->message !!}
|
||||
</a>
|
||||
</span>
|
||||
@@ -224,17 +224,17 @@
|
||||
@if($notification->is_read == 1)
|
||||
|
||||
<li class="item" class="task">
|
||||
|
||||
|
||||
<div class="product-img">
|
||||
|
||||
|
||||
<img src="{{$notification -> users -> profile_pic}}" alt="Product Image" class="img-size-50 img-circle">
|
||||
</div>
|
||||
|
||||
|
||||
<div class="product-info">
|
||||
|
||||
|
||||
<span class="product-description">
|
||||
|
||||
<a href="{!! route('ticket.thread', $notification->notification->model_id) !!}" id='{{ $notification -> notification_id}}'
|
||||
|
||||
<a href="{!! route('ticket.thread', $notification->notification->model_id) !!}" id='{{ $notification -> notification_id}}'
|
||||
class='noti_User'>
|
||||
{!! $notification->notification->type->message !!} with id "{!!$notification->notification->model->ticket_number!!}"
|
||||
</a>
|
||||
@@ -243,19 +243,19 @@
|
||||
</li>
|
||||
|
||||
@elseif($notification->notification->model)
|
||||
|
||||
|
||||
<li class="item">
|
||||
|
||||
|
||||
<div class="product-img">
|
||||
|
||||
|
||||
<img src="{{$notification -> users -> profile_pic}}" alt="Product Image" class="img-size-50 img-circle">
|
||||
</div>
|
||||
|
||||
|
||||
<div class="product-info">
|
||||
|
||||
|
||||
<span class="product-description">
|
||||
|
||||
<a href="{!! route('ticket.thread', $notification->notification->model_id) !!}" id='{{ $notification -> notification_id}}'
|
||||
|
||||
<a href="{!! route('ticket.thread', $notification->notification->model_id) !!}" id='{{ $notification -> notification_id}}'
|
||||
class='noti_User'>
|
||||
{!! $notification->notification->type->message !!} with id "{!!$notification->notification->model->ticket_number!!}"
|
||||
</a>
|
||||
@@ -269,14 +269,14 @@
|
||||
|
||||
<li class="item" style="position: relative;top: -5px;">
|
||||
|
||||
<img src="{{asset("lb-faveo/media/images/gifloader.gif")}}" style="display: none;margin-left: 100px;" id="notification-loader"
|
||||
<img src="{{asset("lb-faveo/media/images/gifloader.gif")}}" style="display: none;margin-left: 100px;" id="notification-loader"
|
||||
class="img-size-50">
|
||||
</li>
|
||||
|
||||
|
||||
<li class="dropdown-footer"><a class="text-dark" href="{{ url('notifications-list')}}">View all</a>
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
</li>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
|
||||
@@ -285,9 +285,9 @@
|
||||
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown" aria-expanded="true">
|
||||
<img src="{{asset("lb-faveo/flags/$src")}}">
|
||||
</a>
|
||||
|
||||
|
||||
<div class="dropdown-menu dropdown-menu-sm dropdown-menu-right p-0" style="width: 290px;">
|
||||
|
||||
|
||||
@foreach($langs as $key => $value)
|
||||
<?php $src = $key.".png"; ?>
|
||||
<a href="#" class="dropdown-item" id="{{$key}}" onclick="changeLang(this.id)"><img src="{{asset("lb-faveo/flags/$src")}}"> {{$value[0]}}
|
||||
@@ -295,7 +295,7 @@
|
||||
‏
|
||||
@endif
|
||||
({{$value[1]}})</a>
|
||||
@endforeach
|
||||
@endforeach
|
||||
</div>
|
||||
</li>
|
||||
|
||||
@@ -321,9 +321,9 @@
|
||||
</li>
|
||||
<!-- Menu Footer-->
|
||||
<li class="user-footer">
|
||||
|
||||
|
||||
<a href="{{url('admin-profile')}}" class="btn btn-primary btn-flat">{!! Lang::get('lang.profile') !!}</a>
|
||||
|
||||
|
||||
<a href="{{url('auth/logout')}}" class="btn btn-danger btn-flat float-right">{!! Lang::get('lang.sign_out') !!}</a>
|
||||
</li>
|
||||
</ul>
|
||||
@@ -341,10 +341,10 @@
|
||||
<section class="sidebar">
|
||||
|
||||
<div class="user-panel mt-3 pb-3 mb-3 d-flex">
|
||||
|
||||
|
||||
<div class="image">
|
||||
|
||||
<img id="sidebar-profile-img" src="{{Auth::user()->profile_pic}}" alt="User Image" width="auto" height="auto"
|
||||
<img id="sidebar-profile-img" src="{{Auth::user()->profile_pic}}" alt="User Image" width="auto" height="auto"
|
||||
class="img-circle elevation-2" style="width: 30px;height: 30px;">
|
||||
</div>
|
||||
|
||||
@@ -356,17 +356,17 @@
|
||||
</div>
|
||||
|
||||
<nav class="mt-2">
|
||||
|
||||
|
||||
<ul class="nav nav-pills nav-sidebar flex-column nav-child-indent" data-widget="treeview" role="menu" data-accordion="false">
|
||||
@if($replaceside==0)
|
||||
|
||||
|
||||
<li class="nav-header">{!! Lang::get('lang.settings-2') !!}</li>
|
||||
|
||||
<li @yield('staff-menu-parent') class="nav-item">
|
||||
|
||||
<a href="#" @yield('Staffs') class="nav-link">
|
||||
<i class="nav-icon fas fa-users"></i>
|
||||
<p>{!! Lang::get('lang.staffs') !!} <i class="right fas fa-angle-left"></i></p>
|
||||
<i class="nav-icon fas fa-users"></i>
|
||||
<p>{!! Lang::get('lang.staffs') !!} <i class="right fas fa-angle-left"></i></p>
|
||||
</a>
|
||||
|
||||
<ul @yield('staff-menu-open') class="nav nav-treeview">
|
||||
@@ -377,7 +377,7 @@
|
||||
<p>{!! Lang::get('lang.agents') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{ url('departments') }}" @yield('departments') class="nav-link">
|
||||
<i class="nav-icon fas fa-sitemap"></i>
|
||||
@@ -402,7 +402,7 @@
|
||||
</li>
|
||||
|
||||
<li @yield('email-menu-parent') class="nav-item">
|
||||
|
||||
|
||||
<a href="#" @yield('Emails') class="nav-link">
|
||||
<i class="nav-icon fas fa-envelope"></i>
|
||||
<p>{!! Lang::get('lang.email') !!} <i class="fas fa-angle-left right"></i></p>
|
||||
@@ -416,35 +416,35 @@
|
||||
<p>{!! Lang::get('lang.emails') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{ url('banlist') }}" @yield('ban') class="nav-link">
|
||||
<i class="nav-icon fas fa-ban"></i>
|
||||
<p>{!! Lang::get('lang.ban_lists') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{ url('template-sets') }}" @yield('template') class="nav-link">
|
||||
<i class="nav-icon fas fa-reply"></i>
|
||||
<p>{!! Lang::get('lang.templates') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('getemail')}}" @yield('email') class="nav-link">
|
||||
<i class="nav-icon fas fa-at"></i>
|
||||
<p>{!! Lang::get('lang.email-settings') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{ url('queue') }}" @yield('queue') class="nav-link">
|
||||
<i class="nav-icon fas fa-upload"></i>
|
||||
<p>{!! Lang::get('lang.queues') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{ url('getdiagno') }}" @yield('diagnostics') class="nav-link">
|
||||
<i class="nav-icon fas fa-plus"></i>
|
||||
@@ -455,7 +455,7 @@
|
||||
</li>
|
||||
|
||||
<li @yield('manage-menu-parent') class="nav-item">
|
||||
|
||||
|
||||
<a href="#" @yield('Manage') class="nav-link">
|
||||
<i class="nav-icon fas fa-cubes"></i>
|
||||
<p>{!! Lang::get('lang.manage') !!} <i class="fas fa-angle-left right"></i></p>
|
||||
@@ -476,28 +476,28 @@
|
||||
<p>{!! Lang::get('lang.sla_plans') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('forms')}}" @yield('forms') class="nav-link">
|
||||
<i class="nav-icon fas fa-file-alt"></i>
|
||||
<p>{!! Lang::get('lang.forms') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('workflow')}}" @yield('workflow') class="nav-link">
|
||||
<i class="nav-icon fas fa-sitemap"></i>
|
||||
<p>{!! Lang::get('lang.workflow') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('ticket/priority')}}" @yield('priority') class="nav-link">
|
||||
<i class="nav-icon fas fa-asterisk"></i>
|
||||
<p>{!! Lang::get('lang.priority') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('url/settings')}}" @yield('url') class="nav-link">
|
||||
<i class="nav-icon fas fa-server"></i>
|
||||
@@ -508,12 +508,12 @@
|
||||
</li>
|
||||
|
||||
<li @yield('ticket-menu-parent') class="nav-item">
|
||||
|
||||
|
||||
<a href="#" @yield('Tickets') class="nav-link">
|
||||
<i class="nav-icon fas fa-ticket-alt"></i>
|
||||
<p>{!! Lang::get('lang.tickets') !!} <i class="fas fa-angle-left right"></i></p>
|
||||
</a>
|
||||
|
||||
|
||||
<ul @yield('ticket-menu-open') class="nav nav-treeview">
|
||||
|
||||
<li class="nav-item">
|
||||
@@ -522,14 +522,14 @@
|
||||
<p>{!! Lang::get('lang.ticket') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('getresponder')}}" @yield('auto-response') class="nav-link">
|
||||
<i class="nav-icon fas fa-reply-all"></i>
|
||||
<p>{!! Lang::get('lang.auto_response') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('getalert')}}" @yield('alert') class="nav-link">
|
||||
<i class="nav-icon fas fa-bell"></i>
|
||||
@@ -543,14 +543,14 @@
|
||||
<p>{!! Lang::get('lang.status') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('getratings')}}" @yield('ratings') class="nav-link">
|
||||
<i class="nav-icon fas fa-star"></i>
|
||||
<p>{!! Lang::get('lang.ratings') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('close-workflow')}}" @yield('close-workflow') class="nav-link">
|
||||
<i class="nav-icon fa fa-sitemap"></i>
|
||||
@@ -561,12 +561,12 @@
|
||||
</li>
|
||||
|
||||
<li @yield('settings-menu-parent') class="nav-item">
|
||||
|
||||
|
||||
<a href="#" @yield('Settings') class="nav-link">
|
||||
<i class="nav-icon fas fa-cog"></i>
|
||||
<p>{!! Lang::get('lang.settings') !!} <i class="fas fa-angle-left right"></i></p>
|
||||
</a>
|
||||
|
||||
|
||||
<ul @yield('settings-menu-open') class="nav nav-treeview">
|
||||
|
||||
<li class="nav-item">
|
||||
@@ -575,42 +575,42 @@
|
||||
<p>{!! Lang::get('lang.company') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('getsystem')}}" @yield('system') class="nav-link">
|
||||
<i class="nav-icon fas fa-laptop"></i>
|
||||
<p>{!! Lang::get('lang.system') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{ url('social/media') }}" @yield('social-login') class="nav-link">
|
||||
<i class="nav-icon fas fa-globe"></i>
|
||||
<i class="nav-icon fas fa-globe"></i>
|
||||
<p>{!! Lang::get('lang.social-login') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('languages')}}" @yield('languages') class="nav-link">
|
||||
<i class="nav-icon fas fa-language"></i>
|
||||
<p>{!! Lang::get('lang.language') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('job-scheduler')}}" @yield('cron') class="nav-link">
|
||||
<i class="nav-icon fas fa-hourglass"></i>
|
||||
<p>{!! Lang::get('lang.cron') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('security')}}" @yield('security') class="nav-link">
|
||||
<i class="nav-icon fas fa-lock"></i>
|
||||
<p>{!! Lang::get('lang.security') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('settings-notification')}}" @yield('notification') class="nav-link">
|
||||
<i class="nav-icon fas fa-bell"></i>
|
||||
@@ -628,17 +628,17 @@
|
||||
</li>
|
||||
|
||||
<li @yield('error-menu-parent') class="nav-item">
|
||||
|
||||
|
||||
<a href="#" @yield('error-bugs') class="nav-link">
|
||||
<i class="nav-icon fas fa-heartbeat"></i>
|
||||
<p>{!! Lang::get('lang.error-debug') !!} <i class="fas fa-angle-left right"></i></p>
|
||||
</a>
|
||||
|
||||
|
||||
<ul @yield('error-menu-open') class="nav nav-treeview">
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{ route('err.debug.settings') }}" @yield('debugging-option') class="nav-link">
|
||||
<i class="nav-icon fas fa-bug"></i>
|
||||
<i class="nav-icon fas fa-bug"></i>
|
||||
<p>{!! Lang::get('lang.debug-options') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
@@ -646,24 +646,24 @@
|
||||
</li>
|
||||
|
||||
<li @yield('widget-menu-parent') class="nav-item">
|
||||
|
||||
|
||||
<a href="#" @yield('Themes') class="nav-link">
|
||||
<i class="nav-icon fas fa-chart-pie"></i>
|
||||
<p>{!! Lang::get('lang.widgets') !!} <i class="fas fa-angle-left right"></i></p>
|
||||
</a>
|
||||
|
||||
|
||||
<ul @yield('widget-menu-open') class="nav nav-treeview">
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{ url('widgets') }}" @yield('widget') class="nav-link">
|
||||
<i class="nav-icon fas fa-list-alt"></i>
|
||||
<i class="nav-icon fas fa-list-alt"></i>
|
||||
<p>{!! Lang::get('lang.widgets') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{ url('social-buttons') }}" @yield('social') class="nav-link">
|
||||
<i class="nav-icon fas fa-cubes"></i>
|
||||
<i class="nav-icon fas fa-cubes"></i>
|
||||
<p>{!! Lang::get('lang.social') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
@@ -700,7 +700,7 @@
|
||||
|
||||
<!-- Right side column. Contains the navbar and content of the page -->
|
||||
<div class="content-wrapper" style="padding-bottom: 1px;">
|
||||
|
||||
|
||||
<div class="content-header">
|
||||
<div class="container-fluid">
|
||||
<div class="row mb-2">
|
||||
@@ -718,21 +718,21 @@
|
||||
<section class="content">
|
||||
|
||||
<div class="container-fluid">
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main content -->
|
||||
<section class="content">
|
||||
|
||||
|
||||
@if($dummy_installation == 1 || $dummy_installation == '1')
|
||||
|
||||
|
||||
<div class="alert alert-info alert-dismissible">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
<i class="icon fas fa-exclamation-triangle"></i> {{Lang::get('lang.dummy_data_installation_message')}}
|
||||
<i class="icon fas fa-exclamation-triangle"></i> {{Lang::get('lang.dummy_data_installation_message')}}
|
||||
<a href="{{route('clean-database')}}">{{Lang::get('lang.click')}}</a> {{Lang::get('lang.clear-dummy-data')}}
|
||||
</div>
|
||||
|
||||
|
||||
@elseif (!$is_mail_conigured)
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
@@ -758,7 +758,7 @@
|
||||
<footer class="main-footer">
|
||||
|
||||
<div class="float-right d-none d-sm-block">
|
||||
|
||||
|
||||
<span style="font-weight: 500">{!! Lang::get('lang.version') !!}</span> {!! Config::get('app.version') !!}
|
||||
</div>
|
||||
|
||||
@@ -766,28 +766,28 @@
|
||||
</footer>
|
||||
</div><!-- ./wrapper -->
|
||||
|
||||
<script src="{{asset("lb-faveo/adminlte3/js/adminlte3.min.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/adminlte3/js/adminlte3.2.0.min.js")}}" type="text/javascript"></script>
|
||||
<!-- Slimscroll -->
|
||||
<script src="{{asset("lb-faveo/adminlte3/plugins/overlayScrollbars/overlayScrollbars.min.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/plugins/datatables/jquery.dataTables.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/adminlte3/plugins/overlayScrollbars/overlayScrollbars3.2.0.min.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/plugins/datatables/jquery.dataTables.3.2.0.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap4.3.2.0.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/js/jquery.rating.pack.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/plugins/select2/select2.full.min.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/plugins/select2/select2.full.3.2.0.min.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/plugins/moment/moment.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/plugins/moment/moment.3.2.0.js")}}" type="text/javascript"></script>
|
||||
|
||||
<!-- full calendar-->
|
||||
<script src="{{asset('lb-faveo/plugins/fullcalendar/fullcalendar.min.js')}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset('lb-faveo/plugins/daterangepicker/daterangepicker.js')}}" type="text/javascript"></script>
|
||||
<script src="{{asset('lb-faveo/plugins/daterangepicker/daterangepicker.3.2.0.js')}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/js/bootstrap-datetimepicker4.7.14.min.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/plugins/summernote/summernote-bs4.min.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/plugins/summernote/summernote-bs4.3.2.0min.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/plugins/iCheck/icheck.min.js")}}" type="text/javascript"></script>
|
||||
|
||||
|
@@ -21,32 +21,33 @@
|
||||
<link href="{{asset("lb-faveo/css/font-awesome-5.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Ionicons -->
|
||||
<link href="{{asset("lb-faveo/css/ionicons.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{asset("lb-faveo/css/ionicons.min.css")}}" rel="stylesheet" type
|
||||
="text/css" />
|
||||
|
||||
<!-- Theme style -->
|
||||
<link href="{{asset("lb-faveo/adminlte3/css/adminlte3.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{asset("lb-faveo/adminlte3/css/adminlte3.2.0.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<link href="{{asset("lb-faveo/adminlte3/plugins/overlayScrollbars/overlayScrollbars.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{asset("lb-faveo/adminlte3/plugins/overlayScrollbars/overlayScrollbars3.2.0.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<link href="{{asset("lb-faveo/css/editor.css")}}" rel="stylesheet" type="text/css"/>
|
||||
|
||||
<link href="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.css")}}" rel="stylesheet" type="text/css"/>
|
||||
<link href="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.3.2.0.css")}}" rel="stylesheet" type="text/css"/>
|
||||
|
||||
<link href="{{asset("lb-faveo/css/jquery.rating.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Select2 -->
|
||||
<link href="{{asset("lb-faveo/plugins/select2/select2.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{asset("lb-faveo/plugins/select2/select2.3.2.0.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<link href="{{asset("css/close-button.css")}}" rel="stylesheet" type="text/css" />
|
||||
<!--Daterangepicker-->
|
||||
<link rel="stylesheet" href="{{asset("lb-faveo/css/bootstrap-datetimepicker4.7.14.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<link href="{{asset("lb-faveo/plugins/summernote/summernote-bs4.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{asset("lb-faveo/css/jquery.ui.css")}}" rel="stylesheet" type="text/css" />
|
||||
<script src="{{asset("lb-faveo/js/jquery-3.4.1.min.js")}}" type="text/javascript"></script>
|
||||
<link href="{{asset("lb-faveo/plugins/summernote/summernote-bs4.3.2.0.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{asset("lb-faveo/css/jquery.ui.3.2.0css")}}" rel="stylesheet" type="text/css" />
|
||||
<script src="{{asset("lb-faveo/js/jquery-3.2.0.min.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/js/jquery-migrate.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/js/popper.min.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/js/popper.3.2.0.min.js")}}" type="text/javascript"></script>
|
||||
<!-- Bootstrap 3.3.2 JS -->
|
||||
<script src="{{asset("lb-faveo/js/bootstrap4.min.js")}}" type="text/javascript"></script>
|
||||
|
||||
@@ -648,32 +649,32 @@
|
||||
<span style="font-weight: 500">{!! Lang::get('lang.copyright') !!} © {!! date('Y') !!} <a href="{!! $company->website !!}" target="_blank">{!! $company->company_name !!}</a>.</span> {!! Lang::get('lang.all_rights_reserved') !!}. {!! Lang::get('lang.powered_by') !!} <a href="http://www.faveohelpdesk.com/" target="_blank">Faveo</a>
|
||||
</footer>
|
||||
</div><!-- ./wrapper -->
|
||||
<script src="{{asset("lb-faveo/adminlte3/js/adminlte3.min.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/adminlte3/js/adminlte3.2.0.min.js")}}" type="text/javascript"></script>
|
||||
<!-- Slimscroll -->
|
||||
<script src="{{asset("lb-faveo/adminlte3/plugins/overlayScrollbars/overlayScrollbars.min.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/adminlte3/plugins/overlayScrollbars/overlayScrollbars3.2.0.min.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/plugins/datatables/jquery.dataTables.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/plugins/datatables/jquery.dataTables.3.2.0.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap4.3.2.0.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/js/jquery.rating.pack.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/plugins/select2/select2.full.min.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/plugins/select2/select2.full.3.2.0.min.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/plugins/moment/moment.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/plugins/moment/moment.3.2.0.js")}}" type="text/javascript"></script>
|
||||
|
||||
<!-- full calendar-->
|
||||
<script src="{{asset('lb-faveo/plugins/fullcalendar/fullcalendar.min.js')}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset('lb-faveo/plugins/daterangepicker/daterangepicker.js')}}" type="text/javascript"></script>
|
||||
<script src="{{asset('lb-faveo/plugins/daterangepicker/daterangepicker.3.2.0.js')}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/js/bootstrap-datetimepicker4.7.14.min.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/plugins/summernote/summernote-bs4.min.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/plugins/summernote/summernote-bs4.3.2.0min.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/plugins/iCheck/icheck.min.js")}}" type="text/javascript"></script>
|
||||
{{-- jquery ui --}}
|
||||
<script src="{{asset("lb-faveo/js/jquery.ui.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/js/jquery.ui.3.2.0.js")}}" type="text/javascript"></script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
|
||||
|
@@ -28,9 +28,9 @@
|
||||
|
||||
<link href="{{asset("lb-faveo/css/jquery.rating.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<link href="{{asset("lb-faveo/plugins/summernote/summernote-bs4.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{asset("lb-faveo/plugins/summernote/summernote-bs4.3.2.0.min.css")}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<script src="{{asset("lb-faveo/js/jquery-3.4.1.min.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/js/jquery-3.2.0.min.js")}}" type="text/javascript"></script>
|
||||
|
||||
@yield('HeadInclude')
|
||||
</head>
|
||||
@@ -509,7 +509,7 @@
|
||||
</div>
|
||||
</footer><!-- #colophon -->
|
||||
|
||||
<script src="{{asset("lb-faveo/js/popper.min.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/js/popper.3.2.0.min.js")}}" type="text/javascript"></script>
|
||||
<!-- Bootstrap 3.3.2 JS -->
|
||||
<script src="{{asset("lb-faveo/js/bootstrap4.min.js")}}" type="text/javascript"></script>
|
||||
|
||||
@@ -527,7 +527,7 @@
|
||||
|
||||
<script src="{{asset("lb-faveo/js/languagechanger.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script src="{{asset("lb-faveo/plugins/summernote/summernote-bs4.min.js")}}" type="text/javascript"></script>
|
||||
<script src="{{asset("lb-faveo/plugins/summernote/summernote-bs4.3.2.0.min.js")}}" type="text/javascript"></script>
|
||||
|
||||
<script>
|
||||
$(function () {
|
||||
|
Reference in New Issue
Block a user