You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					647 lines
				
				25 KiB
			
		
		
			
		
	
	
					647 lines
				
				25 KiB
			| 
								 
											2 years ago
										 
									 | 
							
								<!DOCTYPE html>
							 | 
						||
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								        $site_direction = session()->get('site_direction');
							 | 
						||
| 
								 | 
							
								        // if (env('APP_MODE') == 'demo') {
							 | 
						||
| 
								 | 
							
								        // $site_direction = session()->get('site_direction');
							 | 
						||
| 
								 | 
							
								    // }else{
							 | 
						||
| 
								 | 
							
								    //     $site_direction = \App\Models\BusinessSetting::where('key', 'site_direction')->first();
							 | 
						||
| 
								 | 
							
								    //     $site_direction = $site_direction->value ?? 'ltr';
							 | 
						||
| 
								 | 
							
								    // }
							 | 
						||
| 
								 | 
							
								?>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								<html dir="{{ $site_direction }}" lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="{{ $site_direction === 'rtl'?'active':'' }}">
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								<head>
							 | 
						||
| 
								 | 
							
								    <meta charset="utf-8">
							 | 
						||
| 
								 | 
							
								    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
							 | 
						||
| 
								 | 
							
								    <meta name="csrf-token" content="{{ csrf_token() }}">
							 | 
						||
| 
								 | 
							
								    <!-- Title -->
							 | 
						||
| 
								 | 
							
								    <title>@yield('title')</title>
							 | 
						||
| 
								 | 
							
								    <!-- Favicon -->
							 | 
						||
| 
								 | 
							
								    @php($logo = \App\Models\BusinessSetting::where(['key' => 'icon'])->first()->value)
							 | 
						||
| 
								 | 
							
								    <link rel="shortcut icon" href="">
							 | 
						||
| 
								 | 
							
								    <link rel="icon" type="image/x-icon" href="{{ asset('storage/app/public/business/' . $logo ?? '') }}">
							 | 
						||
| 
								 | 
							
								    <!-- Font -->
							 | 
						||
| 
								 | 
							
								    <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
							 | 
						||
| 
								 | 
							
								    <!-- CSS Implementing Plugins -->
							 | 
						||
| 
								 | 
							
								    <link rel="stylesheet" href="{{ asset('public/assets/admin') }}/css/vendor.min.css">
							 | 
						||
| 
								 | 
							
								    <link rel="stylesheet" href="{{ asset('public/assets/admin') }}/vendor/icon-set/style.css">
							 | 
						||
| 
								 | 
							
								    <link rel="stylesheet" href="{{ asset('public/assets/admin') }}/css/custom.css">
							 | 
						||
| 
								 | 
							
								    <!-- CSS Front Template -->
							 | 
						||
| 
								 | 
							
								    <link rel="stylesheet" href="{{ asset('public/assets/admin') }}/css/bootstrap.min.css">
							 | 
						||
| 
								 | 
							
								    <link rel="stylesheet" href="{{ asset('public/assets/admin') }}/css/theme.minc619.css?v=1.0">
							 | 
						||
| 
								 | 
							
								    <link rel="stylesheet" href="{{ asset('public/assets/admin') }}/css/style.css">
							 | 
						||
| 
								 | 
							
								    @stack('css_or_js')
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <script src="{{ asset('public/assets/admin') }}/vendor/hs-navbar-vertical-aside/hs-navbar-vertical-aside-mini-cache.js">
							 | 
						||
| 
								 | 
							
								    </script>
							 | 
						||
| 
								 | 
							
								    <link rel="stylesheet" href="{{ asset('public/assets/admin') }}/css/toastr.css">
							 | 
						||
| 
								 | 
							
								</head>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								<body class="footer-offset">
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @if(env('APP_MODE')=='demo')
							 | 
						||
| 
								 | 
							
								    <div id="direction-toggle" class="direction-toggle">
							 | 
						||
| 
								 | 
							
								        <i class="tio-settings"></i>
							 | 
						||
| 
								 | 
							
								        <span></span>
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								    @endif
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <div class="container">
							 | 
						||
| 
								 | 
							
								        <div class="row">
							 | 
						||
| 
								 | 
							
								            <div class="col-md-12">
							 | 
						||
| 
								 | 
							
								                <div id="loading" class="initial-hidden">
							 | 
						||
| 
								 | 
							
								                    <div class="loading--1">
							 | 
						||
| 
								 | 
							
								                        <img width="200" src="{{ asset('public/assets/admin/img/loader.gif') }}">
							 | 
						||
| 
								 | 
							
								                    </div>
							 | 
						||
| 
								 | 
							
								                </div>
							 | 
						||
| 
								 | 
							
								            </div>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <!-- Builder -->
							 | 
						||
| 
								 | 
							
								    @include('layouts.admin.partials._front-settings')
							 | 
						||
| 
								 | 
							
								    <!-- End Builder -->
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <!-- JS Preview mode only -->
							 | 
						||
| 
								 | 
							
								    @include('layouts.admin.partials._header')
							 | 
						||
| 
								 | 
							
								    @include('layouts.admin.partials._sidebar')
							 | 
						||
| 
								 | 
							
								    <!-- END ONLY DEV -->
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <main id="content" role="main" class="main pointer-event">
							 | 
						||
| 
								 | 
							
								        <!-- Content -->
							 | 
						||
| 
								 | 
							
								        @yield('content')
							 | 
						||
| 
								 | 
							
								        <!-- End Content -->
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <!-- Footer -->
							 | 
						||
| 
								 | 
							
								        @include('layouts.admin.partials._footer')
							 | 
						||
| 
								 | 
							
								        <!-- End Footer -->
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <div class="modal fade" id="popup-modal">
							 | 
						||
| 
								 | 
							
								            <div class="modal-dialog modal-dialog-centered" role="document">
							 | 
						||
| 
								 | 
							
								                <div class="modal-content">
							 | 
						||
| 
								 | 
							
								                    <div class="modal-body">
							 | 
						||
| 
								 | 
							
								                        <div class="row">
							 | 
						||
| 
								 | 
							
								                            <div class="col-12">
							 | 
						||
| 
								 | 
							
								                                <center>
							 | 
						||
| 
								 | 
							
								                                    <h2 class="color-8a8a8a">
							 | 
						||
| 
								 | 
							
								                                        <i class="tio-shopping-cart-outlined"></i> {{translate('messages.You have new order, Check Please.')}}
							 | 
						||
| 
								 | 
							
								                                    </h2>
							 | 
						||
| 
								 | 
							
								                                    <hr>
							 | 
						||
| 
								 | 
							
								                                    <button onclick="check_order()" class="btn btn-primary">{{translate('messages.Ok, let me check')}}</button>
							 | 
						||
| 
								 | 
							
								                                </center>
							 | 
						||
| 
								 | 
							
								                            </div>
							 | 
						||
| 
								 | 
							
								                        </div>
							 | 
						||
| 
								 | 
							
								                    </div>
							 | 
						||
| 
								 | 
							
								                </div>
							 | 
						||
| 
								 | 
							
								            </div>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								        <div class="modal fade" id="popup-modal-msg">
							 | 
						||
| 
								 | 
							
								            <div class="modal-dialog modal-dialog-centered" role="document">
							 | 
						||
| 
								 | 
							
								                <div class="modal-content">
							 | 
						||
| 
								 | 
							
								                    <div class="modal-body">
							 | 
						||
| 
								 | 
							
								                        <div class="row">
							 | 
						||
| 
								 | 
							
								                            <div class="col-12">
							 | 
						||
| 
								 | 
							
								                                <center>
							 | 
						||
| 
								 | 
							
								                                    <h2 class="color-8a8a8a">
							 | 
						||
| 
								 | 
							
								                                        <i class="tio-messages"></i> {{ translate('messages.message_description') }}
							 | 
						||
| 
								 | 
							
								                                    </h2>
							 | 
						||
| 
								 | 
							
								                                    <hr>
							 | 
						||
| 
								 | 
							
								                                    <button onclick="check_message()"
							 | 
						||
| 
								 | 
							
								                                        class="btn btn-primary">{{ translate('messages.Ok, let me check') }}</button>
							 | 
						||
| 
								 | 
							
								                                </center>
							 | 
						||
| 
								 | 
							
								                            </div>
							 | 
						||
| 
								 | 
							
								                        </div>
							 | 
						||
| 
								 | 
							
								                    </div>
							 | 
						||
| 
								 | 
							
								                </div>
							 | 
						||
| 
								 | 
							
								            </div>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    </main>
							 | 
						||
| 
								 | 
							
								    <!-- ========== END MAIN CONTENT ========== -->
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <!-- ========== END SECONDARY CONTENTS ========== -->
							 | 
						||
| 
								 | 
							
								    <script src="{{ asset('public/assets/admin') }}/js/custom.js"></script>
							 | 
						||
| 
								 | 
							
								    <!-- JS Implementing Plugins -->custom
							 | 
						||
| 
								 | 
							
								    <!-- The core Firebase JS SDK is always required and must be listed first -->
							 | 
						||
| 
								 | 
							
								    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
							 | 
						||
| 
								 | 
							
								    <script src="https://www.gstatic.com/firebasejs/8.3.2/firebase.js"></script>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @stack('script')
							 | 
						||
| 
								 | 
							
								    <!-- JS Front -->
							 | 
						||
| 
								 | 
							
								    <script src="{{ asset('public/assets/admin/js/vendor.min.js') }}"></script>
							 | 
						||
| 
								 | 
							
								    <script src="{{ asset('public/assets/admin/js/theme.min.js') }}"></script>
							 | 
						||
| 
								 | 
							
								    <script src="{{ asset('public/assets/admin/js/sweet_alert.js') }}"></script>
							 | 
						||
| 
								 | 
							
								    <script src="{{ asset('public/assets/admin/js/toastr.js') }}"></script>
							 | 
						||
| 
								 | 
							
								    {!! Toastr::message() !!}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @if ($errors->any())
							 | 
						||
| 
								 | 
							
								        <script>
							 | 
						||
| 
								 | 
							
								            @foreach ($errors->all() as $error)
							 | 
						||
| 
								 | 
							
								                toastr.error('{{ translate($error) }}', Error, {
							 | 
						||
| 
								 | 
							
								                    CloseButton: true,
							 | 
						||
| 
								 | 
							
								                    ProgressBar: true
							 | 
						||
| 
								 | 
							
								                });
							 | 
						||
| 
								 | 
							
								            @endforeach
							 | 
						||
| 
								 | 
							
								        </script>
							 | 
						||
| 
								 | 
							
								    @endif
							 | 
						||
| 
								 | 
							
								    <!-- JS Plugins Init. -->
							 | 
						||
| 
								 | 
							
								    <!-- Direction Script -->
							 | 
						||
| 
								 | 
							
								    <script>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        $(document).on('ready', function(){
							 | 
						||
| 
								 | 
							
								            $(".direction-toggle").on("click", function () {
							 | 
						||
| 
								 | 
							
								                if($('html').hasClass('active')){
							 | 
						||
| 
								 | 
							
								                    $('html').removeClass('active')
							 | 
						||
| 
								 | 
							
								                    setDirection(1);
							 | 
						||
| 
								 | 
							
								                }else {
							 | 
						||
| 
								 | 
							
								                    setDirection(0);
							 | 
						||
| 
								 | 
							
								                    $('html').addClass('active')
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								            });
							 | 
						||
| 
								 | 
							
								            if ($('html').attr('dir') == "rtl") {
							 | 
						||
| 
								 | 
							
								                $(".direction-toggle").find('span').text('Toggle LTR')
							 | 
						||
| 
								 | 
							
								            } else {
							 | 
						||
| 
								 | 
							
								                $(".direction-toggle").find('span').text('Toggle RTL')
							 | 
						||
| 
								 | 
							
								            }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            function setDirection(status) {
							 | 
						||
| 
								 | 
							
								                if (status == 1) {
							 | 
						||
| 
								 | 
							
								                    $("html").attr('dir', 'ltr');
							 | 
						||
| 
								 | 
							
								                    $(".direction-toggle").find('span').text('Toggle RTL')
							 | 
						||
| 
								 | 
							
								                } else {
							 | 
						||
| 
								 | 
							
								                    $("html").attr('dir', 'rtl');
							 | 
						||
| 
								 | 
							
								                    $(".direction-toggle").find('span').text('Toggle LTR')
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								                $.get({
							 | 
						||
| 
								 | 
							
								                        url: '{{ route('admin.business-settings.site_direction') }}',
							 | 
						||
| 
								 | 
							
								                        dataType: 'json',
							 | 
						||
| 
								 | 
							
								                        data: {
							 | 
						||
| 
								 | 
							
								                            status: status,
							 | 
						||
| 
								 | 
							
								                        },
							 | 
						||
| 
								 | 
							
								                        success: function() {
							 | 
						||
| 
								 | 
							
								                            // alert(ok);
							 | 
						||
| 
								 | 
							
								                        },
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                    });
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								            });
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    </script>
							 | 
						||
| 
								 | 
							
								    <!-- Direction Script -->
							 | 
						||
| 
								 | 
							
								    <script>
							 | 
						||
| 
								 | 
							
								        $(document).on('ready', function() {
							 | 
						||
| 
								 | 
							
								            // ONLY DEV
							 | 
						||
| 
								 | 
							
								            // =======================================================
							 | 
						||
| 
								 | 
							
								            if (window.localStorage.getItem('hs-builder-popover') === null) {
							 | 
						||
| 
								 | 
							
								                $('#builderPopover').popover('show')
							 | 
						||
| 
								 | 
							
								                    .on('shown.bs.popover', function() {
							 | 
						||
| 
								 | 
							
								                        $('.popover').last().addClass('popover-dark')
							 | 
						||
| 
								 | 
							
								                    });
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                $(document).on('click', '#closeBuilderPopover', function() {
							 | 
						||
| 
								 | 
							
								                    window.localStorage.setItem('hs-builder-popover', true);
							 | 
						||
| 
								 | 
							
								                    $('#builderPopover').popover('dispose');
							 | 
						||
| 
								 | 
							
								                });
							 | 
						||
| 
								 | 
							
								            } else {
							 | 
						||
| 
								 | 
							
								                $('#builderPopover').on('show.bs.popover', function() {
							 | 
						||
| 
								 | 
							
								                    return false
							 | 
						||
| 
								 | 
							
								                });
							 | 
						||
| 
								 | 
							
								            }
							 | 
						||
| 
								 | 
							
								            // END ONLY DEV
							 | 
						||
| 
								 | 
							
								            // =======================================================
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            // BUILDER TOGGLE INVOKER
							 | 
						||
| 
								 | 
							
								            // =======================================================
							 | 
						||
| 
								 | 
							
								            $('.js-navbar-vertical-aside-toggle-invoker').click(function() {
							 | 
						||
| 
								 | 
							
								                $('.js-navbar-vertical-aside-toggle-invoker i').tooltip('hide');
							 | 
						||
| 
								 | 
							
								            });
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            // INITIALIZATION OF MEGA MENU
							 | 
						||
| 
								 | 
							
								            // =======================================================
							 | 
						||
| 
								 | 
							
								            // var megaMenu = new HSMegaMenu($('.js-mega-menu'), {
							 | 
						||
| 
								 | 
							
								            //     desktop: {
							 | 
						||
| 
								 | 
							
								            //         position: 'left'
							 | 
						||
| 
								 | 
							
								            //     }
							 | 
						||
| 
								 | 
							
								            // }).init();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            // INITIALIZATION OF NAVBAR VERTICAL NAVIGATION
							 | 
						||
| 
								 | 
							
								            // =======================================================
							 | 
						||
| 
								 | 
							
								            var sidebar = $('.js-navbar-vertical-aside').hsSideNav();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            // INITIALIZATION OF TOOLTIP IN NAVBAR VERTICAL MENU
							 | 
						||
| 
								 | 
							
								            // =======================================================
							 | 
						||
| 
								 | 
							
								            $('.js-nav-tooltip-link').tooltip({
							 | 
						||
| 
								 | 
							
								                boundary: 'window'
							 | 
						||
| 
								 | 
							
								            })
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            $(".js-nav-tooltip-link").on("show.bs.tooltip", function(e) {
							 | 
						||
| 
								 | 
							
								                if (!$("body").hasClass("navbar-vertical-aside-mini-mode")) {
							 | 
						||
| 
								 | 
							
								                    return false;
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								            });
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            // INITIALIZATION OF UNFOLD
							 | 
						||
| 
								 | 
							
								            // =======================================================
							 | 
						||
| 
								 | 
							
								            $('.js-hs-unfold-invoker').each(function() {
							 | 
						||
| 
								 | 
							
								                var unfold = new HSUnfold($(this)).init();
							 | 
						||
| 
								 | 
							
								            });
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            // INITIALIZATION OF FORM SEARCH
							 | 
						||
| 
								 | 
							
								            // =======================================================
							 | 
						||
| 
								 | 
							
								            $('.js-form-search').each(function() {
							 | 
						||
| 
								 | 
							
								                new HSFormSearch($(this)).init()
							 | 
						||
| 
								 | 
							
								            });
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            // INITIALIZATION OF SELECT2
							 | 
						||
| 
								 | 
							
								            // =======================================================
							 | 
						||
| 
								 | 
							
								            $('.js-select2-custom').each(function() {
							 | 
						||
| 
								 | 
							
								                var select2 = $.HSCore.components.HSSelect2.init($(this));
							 | 
						||
| 
								 | 
							
								            });
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            // INITIALIZATION OF DATERANGEPICKER
							 | 
						||
| 
								 | 
							
								            // =======================================================
							 | 
						||
| 
								 | 
							
								            $('.js-daterangepicker').daterangepicker();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            $('.js-daterangepicker-times').daterangepicker({
							 | 
						||
| 
								 | 
							
								                timePicker: true,
							 | 
						||
| 
								 | 
							
								                startDate: moment().startOf('hour'),
							 | 
						||
| 
								 | 
							
								                endDate: moment().startOf('hour').add(32, 'hour'),
							 | 
						||
| 
								 | 
							
								                locale: {
							 | 
						||
| 
								 | 
							
								                    format: 'M/DD hh:mm A'
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								            });
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            var start = moment();
							 | 
						||
| 
								 | 
							
								            var end = moment();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            function cb(start, end) {
							 | 
						||
| 
								 | 
							
								                $('#js-daterangepicker-predefined .js-daterangepicker-predefined-preview').html(start.format(
							 | 
						||
| 
								 | 
							
								                    'MMM D') + ' - ' + end.format('MMM D, YYYY'));
							 | 
						||
| 
								 | 
							
								            }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            $('#js-daterangepicker-predefined').daterangepicker({
							 | 
						||
| 
								 | 
							
								                startDate: start,
							 | 
						||
| 
								 | 
							
								                endDate: end,
							 | 
						||
| 
								 | 
							
								                ranges: {
							 | 
						||
| 
								 | 
							
								                    'Today': [moment(), moment()],
							 | 
						||
| 
								 | 
							
								                    'Yesterday': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
							 | 
						||
| 
								 | 
							
								                    'Last 7 Days': [moment().subtract(6, 'days'), moment()],
							 | 
						||
| 
								 | 
							
								                    'Last 30 Days': [moment().subtract(29, 'days'), moment()],
							 | 
						||
| 
								 | 
							
								                    'This Month': [moment().startOf('month'), moment().endOf('month')],
							 | 
						||
| 
								 | 
							
								                    'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1,
							 | 
						||
| 
								 | 
							
								                        'month').endOf('month')]
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								            }, cb);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            cb(start, end);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            // INITIALIZATION OF CLIPBOARD
							 | 
						||
| 
								 | 
							
								            // =======================================================
							 | 
						||
| 
								 | 
							
								            $('.js-clipboard').each(function() {
							 | 
						||
| 
								 | 
							
								                var clipboard = $.HSCore.components.HSClipboard.init(this);
							 | 
						||
| 
								 | 
							
								            });
							 | 
						||
| 
								 | 
							
								        });
							 | 
						||
| 
								 | 
							
								    </script>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @stack('script_2')
							 | 
						||
| 
								 | 
							
								    <audio id="myAudio">
							 | 
						||
| 
								 | 
							
								        <source src="{{ asset('public/assets/admin/sound/notification.mp3') }}" type="audio/mpeg">
							 | 
						||
| 
								 | 
							
								    </audio>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <script>
							 | 
						||
| 
								 | 
							
								        var audio = document.getElementById("myAudio");
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        function playAudio() {
							 | 
						||
| 
								 | 
							
								            audio.play();
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        function pauseAudio() {
							 | 
						||
| 
								 | 
							
								            audio.pause();
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								    </script>
							 | 
						||
| 
								 | 
							
								    <script>
							 | 
						||
| 
								 | 
							
								        // @if (\App\CentralLogics\Helpers::module_permission_check('order'))
							 | 
						||
| 
								 | 
							
								        //     @php($admin_order_notification = \App\Models\BusinessSetting::where('key', 'admin_order_notification')->first())
							 | 
						||
| 
								 | 
							
								        //     @php($admin_order_notification = $admin_order_notification ? $admin_order_notification->value : 0)
							 | 
						||
| 
								 | 
							
								        //     @if ($admin_order_notification)
							 | 
						||
| 
								 | 
							
								        //         setInterval(function() {
							 | 
						||
| 
								 | 
							
								        //             $.get({
							 | 
						||
| 
								 | 
							
								        //                 url: '{{ route('admin.get-restaurant-data') }}',
							 | 
						||
| 
								 | 
							
								        //                 dataType: 'json',
							 | 
						||
| 
								 | 
							
								        //                 success: function(response) {
							 | 
						||
| 
								 | 
							
								        //                     let data = response.data;
							 | 
						||
| 
								 | 
							
								        //                     if (data.new_order > 0) {
							 | 
						||
| 
								 | 
							
								        //                         playAudio();
							 | 
						||
| 
								 | 
							
								        //                         $('#popup-modal').appendTo("body").modal('show');
							 | 
						||
| 
								 | 
							
								        //                     }
							 | 
						||
| 
								 | 
							
								        //                 },
							 | 
						||
| 
								 | 
							
								        //             });
							 | 
						||
| 
								 | 
							
								        //         }, 10000);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        //         function check_order() {
							 | 
						||
| 
								 | 
							
								        //             location.href = '{{ route('admin.order.list', ['status' => 'all']) }}';
							 | 
						||
| 
								 | 
							
								        //         }
							 | 
						||
| 
								 | 
							
								        //     @endif
							 | 
						||
| 
								 | 
							
								        // @endif
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        function route_alert(route, message, title = "{{ translate('messages.are_you_sure') }}", processing = false) {
							 | 
						||
| 
								 | 
							
								            if (processing) {
							 | 
						||
| 
								 | 
							
								                Swal.fire({
							 | 
						||
| 
								 | 
							
								                    title: title,
							 | 
						||
| 
								 | 
							
								                    type: 'warning',
							 | 
						||
| 
								 | 
							
								                    showCancelButton: true,
							 | 
						||
| 
								 | 
							
								                    cancelButtonColor: 'default',
							 | 
						||
| 
								 | 
							
								                    confirmButtonColor: '#FC6A57',
							 | 
						||
| 
								 | 
							
								                    cancelButtonText: '{{ translate('Cancel') }}',
							 | 
						||
| 
								 | 
							
								                    confirmButtonText: '{{ translate('Submit') }}',
							 | 
						||
| 
								 | 
							
								                    inputPlaceholder: "{{ translate('Enter processing time') }}",
							 | 
						||
| 
								 | 
							
								                    input: 'text',
							 | 
						||
| 
								 | 
							
								                    html: message + '<br/>' + '<label>{{ translate('Enter Processing time in minutes') }}</label>',
							 | 
						||
| 
								 | 
							
								                    inputValue: processing,
							 | 
						||
| 
								 | 
							
								                    preConfirm: (processing_time) => {
							 | 
						||
| 
								 | 
							
								                        location.href = route + '&processing_time=' + processing_time;
							 | 
						||
| 
								 | 
							
								                    },
							 | 
						||
| 
								 | 
							
								                    allowOutsideClick: () => !Swal.isLoading()
							 | 
						||
| 
								 | 
							
								                })
							 | 
						||
| 
								 | 
							
								            } else {
							 | 
						||
| 
								 | 
							
								                Swal.fire({
							 | 
						||
| 
								 | 
							
								                    title: title,
							 | 
						||
| 
								 | 
							
								                    text: message,
							 | 
						||
| 
								 | 
							
								                    type: 'warning',
							 | 
						||
| 
								 | 
							
								                    showCancelButton: true,
							 | 
						||
| 
								 | 
							
								                    cancelButtonColor: 'default',
							 | 
						||
| 
								 | 
							
								                    confirmButtonColor: '#FC6A57',
							 | 
						||
| 
								 | 
							
								                    cancelButtonText: '{{ translate('No') }}',
							 | 
						||
| 
								 | 
							
								                    confirmButtonText: '{{ translate('Yes') }}',
							 | 
						||
| 
								 | 
							
								                    reverseButtons: true
							 | 
						||
| 
								 | 
							
								                }).then((result) => {
							 | 
						||
| 
								 | 
							
								                    if (result.value) {
							 | 
						||
| 
								 | 
							
								                        location.href = route;
							 | 
						||
| 
								 | 
							
								                    }
							 | 
						||
| 
								 | 
							
								                })
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        function form_alert(id, message) {
							 | 
						||
| 
								 | 
							
								            Swal.fire({
							 | 
						||
| 
								 | 
							
								                title: '{{ translate('messages.Are you sure ?') }}',
							 | 
						||
| 
								 | 
							
								                text: message,
							 | 
						||
| 
								 | 
							
								                type: 'warning',
							 | 
						||
| 
								 | 
							
								                showCancelButton: true,
							 | 
						||
| 
								 | 
							
								                cancelButtonColor: 'default',
							 | 
						||
| 
								 | 
							
								                confirmButtonColor: '#FC6A57',
							 | 
						||
| 
								 | 
							
								                cancelButtonText: '{{ translate('messages.No') }}',
							 | 
						||
| 
								 | 
							
								                confirmButtonText: '{{ translate('messages.Yes') }}',
							 | 
						||
| 
								 | 
							
								                reverseButtons: true
							 | 
						||
| 
								 | 
							
								            }).then((result) => {
							 | 
						||
| 
								 | 
							
								                if (result.value) {
							 | 
						||
| 
								 | 
							
								                    $('#' + id).submit()
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								            })
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        function set_zone_filter(url, id) {
							 | 
						||
| 
								 | 
							
								            // if(url.indexOf("?")> -1)
							 | 
						||
| 
								 | 
							
								            // {
							 | 
						||
| 
								 | 
							
								            var nurl = new URL(url);
							 | 
						||
| 
								 | 
							
								            nurl.searchParams.set('zone_id', id);
							 | 
						||
| 
								 | 
							
								            nurl.searchParams.set('page', '');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            location.href = nurl;
							 | 
						||
| 
								 | 
							
								            // }
							 | 
						||
| 
								 | 
							
								            // else
							 | 
						||
| 
								 | 
							
								            // {
							 | 
						||
| 
								 | 
							
								            //     location.href = url+'?zone_id=' + id;
							 | 
						||
| 
								 | 
							
								            // }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        function set_restaurant_filter(url, id) {
							 | 
						||
| 
								 | 
							
								            var nurl = new URL(url);
							 | 
						||
| 
								 | 
							
								            nurl.searchParams.set('restaurant_id', id);
							 | 
						||
| 
								 | 
							
								            location.href = nurl;
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        function set_time_filter(url, id) {
							 | 
						||
| 
								 | 
							
								            var nurl = new URL(url);
							 | 
						||
| 
								 | 
							
								            nurl.searchParams.set('filter', id);
							 | 
						||
| 
								 | 
							
								            location.href = nurl;
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								        function set_category_filter(url, id) {
							 | 
						||
| 
								 | 
							
								        var nurl = new URL(url);
							 | 
						||
| 
								 | 
							
								        nurl.searchParams.set('category_id', id);
							 | 
						||
| 
								 | 
							
								        location.href = nurl;
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								        function set_filter(url, id, filter_by) {
							 | 
						||
| 
								 | 
							
								            var nurl = new URL(url);
							 | 
						||
| 
								 | 
							
								            nurl.searchParams.set(filter_by, id);
							 | 
						||
| 
								 | 
							
								            location.href = nurl;
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								        function set_customer_filter(url, id) {
							 | 
						||
| 
								 | 
							
								        var nurl = new URL(url);
							 | 
						||
| 
								 | 
							
								        nurl.searchParams.set('customer_id', id);
							 | 
						||
| 
								 | 
							
								        location.href = nurl;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								        function copy_text(copyText) {
							 | 
						||
| 
								 | 
							
								            /* Copy the text inside the text field */
							 | 
						||
| 
								 | 
							
								            navigator.clipboard.writeText(copyText);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            toastr.success('{{ translate('messages.text_copied') }}', {
							 | 
						||
| 
								 | 
							
								                CloseButton: true,
							 | 
						||
| 
								 | 
							
								                ProgressBar: true
							 | 
						||
| 
								 | 
							
								            });
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								    </script>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <script>
							 | 
						||
| 
								 | 
							
								        @php($fcm_credentials = \App\CentralLogics\Helpers::get_business_settings('fcm_credentials'))
							 | 
						||
| 
								 | 
							
								        var firebaseConfig = {
							 | 
						||
| 
								 | 
							
								            apiKey: "{{isset($fcm_credentials['apiKey']) ? $fcm_credentials['apiKey'] : ''}}",
							 | 
						||
| 
								 | 
							
								            authDomain: "{{isset($fcm_credentials['authDomain']) ? $fcm_credentials['authDomain'] : ''}}",
							 | 
						||
| 
								 | 
							
								            projectId: "{{isset($fcm_credentials['projectId']) ? $fcm_credentials['projectId'] : ''}}",
							 | 
						||
| 
								 | 
							
								            storageBucket: "{{isset($fcm_credentials['storageBucket']) ? $fcm_credentials['storageBucket'] : ''}}",
							 | 
						||
| 
								 | 
							
								            messagingSenderId: "{{isset($fcm_credentials['messagingSenderId']) ? $fcm_credentials['messagingSenderId'] : ''}}",
							 | 
						||
| 
								 | 
							
								            appId: "{{isset($fcm_credentials['appId']) ? $fcm_credentials['appId'] : ''}}",
							 | 
						||
| 
								 | 
							
								            measurementId: "{{isset($fcm_credentials['measurementId']) ? $fcm_credentials['measurementId'] : ''}}"
							 | 
						||
| 
								 | 
							
								        };
							 | 
						||
| 
								 | 
							
								        firebase.initializeApp(firebaseConfig);
							 | 
						||
| 
								 | 
							
								        const messaging = firebase.messaging();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        function startFCM() {
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            messaging
							 | 
						||
| 
								 | 
							
								                .requestPermission()
							 | 
						||
| 
								 | 
							
								                .then(function() {
							 | 
						||
| 
								 | 
							
								                    return messaging.getToken()
							 | 
						||
| 
								 | 
							
								                })
							 | 
						||
| 
								 | 
							
								                .then(function(response) {
							 | 
						||
| 
								 | 
							
								                    subscribeTokenToTopic(response, 'admin_message');
							 | 
						||
| 
								 | 
							
								                    console.log('subscribed');
							 | 
						||
| 
								 | 
							
								                }).catch(function(error) {
							 | 
						||
| 
								 | 
							
								                    console.log(error);
							 | 
						||
| 
								 | 
							
								                });
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								        @php($key = \App\Models\BusinessSetting::where('key', 'push_notification_key')->first())
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        function subscribeTokenToTopic(token, topic) {
							 | 
						||
| 
								 | 
							
								            fetch('https://iid.googleapis.com/iid/v1/' + token + '/rel/topics/' + topic, {
							 | 
						||
| 
								 | 
							
								                method: 'POST',
							 | 
						||
| 
								 | 
							
								                headers: new Headers({
							 | 
						||
| 
								 | 
							
								                    'Authorization': 'key={{ $key ? $key->value : '' }}'
							 | 
						||
| 
								 | 
							
								                })
							 | 
						||
| 
								 | 
							
								            }).then(response => {
							 | 
						||
| 
								 | 
							
								                if (response.status < 200 || response.status >= 400) {
							 | 
						||
| 
								 | 
							
								                    throw 'Error subscribing to topic: ' + response.status + ' - ' + response.text();
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								                console.log('Subscribed to "' + topic + '"');
							 | 
						||
| 
								 | 
							
								            }).catch(error => {
							 | 
						||
| 
								 | 
							
								                console.error(error);
							 | 
						||
| 
								 | 
							
								            })
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        function getUrlParameter(sParam) {
							 | 
						||
| 
								 | 
							
								            var sPageURL = window.location.search.substring(1);
							 | 
						||
| 
								 | 
							
								            var sURLVariables = sPageURL.split('&');
							 | 
						||
| 
								 | 
							
								            for (var i = 0; i < sURLVariables.length; i++) {
							 | 
						||
| 
								 | 
							
								                var sParameterName = sURLVariables[i].split('=');
							 | 
						||
| 
								 | 
							
								                if (sParameterName[0] == sParam) {
							 | 
						||
| 
								 | 
							
								                    return sParameterName[1];
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								            }
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        function conversationList() {
							 | 
						||
| 
								 | 
							
								            $.ajax({
							 | 
						||
| 
								 | 
							
								                    url: "{{ route('admin.message.list') }}",
							 | 
						||
| 
								 | 
							
								                    success: function(data) {
							 | 
						||
| 
								 | 
							
								                        $('#conversation-list').empty();
							 | 
						||
| 
								 | 
							
								                        $("#conversation-list").append(data.html);
							 | 
						||
| 
								 | 
							
								                        var user_id = getUrlParameter('user');
							 | 
						||
| 
								 | 
							
								                    $('.customer-list').removeClass('conv-active');
							 | 
						||
| 
								 | 
							
								                    $('#customer-' + user_id).addClass('conv-active');
							 | 
						||
| 
								 | 
							
								                    }
							 | 
						||
| 
								 | 
							
								                })
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        function conversationView() {
							 | 
						||
| 
								 | 
							
								            var conversation_id = getUrlParameter('conversation');
							 | 
						||
| 
								 | 
							
								            var user_id = getUrlParameter('user');
							 | 
						||
| 
								 | 
							
								            var url= '{{url('/')}}/admin/message/view/'+conversation_id+'/' + user_id;
							 | 
						||
| 
								 | 
							
								            $.ajax({
							 | 
						||
| 
								 | 
							
								                url: url,
							 | 
						||
| 
								 | 
							
								                success: function(data) {
							 | 
						||
| 
								 | 
							
								                    $('#view-conversation').html(data.view);
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								            })
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        function vendorConversationView() {
							 | 
						||
| 
								 | 
							
								            var conversation_id = getUrlParameter('conversation');
							 | 
						||
| 
								 | 
							
								            var user_id = getUrlParameter('user');
							 | 
						||
| 
								 | 
							
								            var url= '{{url('/')}}/admin/restaurant/message/'+conversation_id+'/' + user_id;
							 | 
						||
| 
								 | 
							
								            $.ajax({
							 | 
						||
| 
								 | 
							
								                url: url,
							 | 
						||
| 
								 | 
							
								                success: function(data) {
							 | 
						||
| 
								 | 
							
								                    $('#vendor-view-conversation').html(data.view);
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								            })
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        function dmConversationView() {
							 | 
						||
| 
								 | 
							
								            var conversation_id = getUrlParameter('conversation');
							 | 
						||
| 
								 | 
							
								            var user_id = getUrlParameter('user');
							 | 
						||
| 
								 | 
							
								            var url= '{{url('/')}}/admin/delivery-man/message/'+conversation_id+'/' + user_id;
							 | 
						||
| 
								 | 
							
								            $.ajax({
							 | 
						||
| 
								 | 
							
								                url: url,
							 | 
						||
| 
								 | 
							
								                success: function(data) {
							 | 
						||
| 
								 | 
							
								                    $('#dm-view-conversation').html(data.view);
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								            })
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        var new_order_type='restaurant_order';
							 | 
						||
| 
								 | 
							
								        messaging.onMessage(function(payload) {
							 | 
						||
| 
								 | 
							
								            console.log(payload.data);
							 | 
						||
| 
								 | 
							
								            if(payload.data.order_id && payload.data.type == "order_request"){
							 | 
						||
| 
								 | 
							
								                @php($admin_order_notification = \App\Models\BusinessSetting::where('key', 'admin_order_notification')->first())
							 | 
						||
| 
								 | 
							
								                @php($admin_order_notification = $admin_order_notification ? $admin_order_notification->value : 0)
							 | 
						||
| 
								 | 
							
								                @if (\App\CentralLogics\Helpers::module_permission_check('order') && $admin_order_notification)
							 | 
						||
| 
								 | 
							
								                new_order_type = payload.data.order_type
							 | 
						||
| 
								 | 
							
								                playAudio();
							 | 
						||
| 
								 | 
							
								                $('#popup-modal').appendTo("body").modal('show');
							 | 
						||
| 
								 | 
							
								                @endif
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            }else if(payload.data.type == 'message'){
							 | 
						||
| 
								 | 
							
								                var conversation_id = getUrlParameter('conversation');
							 | 
						||
| 
								 | 
							
								                var user_id = getUrlParameter('user');
							 | 
						||
| 
								 | 
							
								                var url= '{{url('/')}}/admin/message/view/'+conversation_id+'/' + user_id;
							 | 
						||
| 
								 | 
							
								                console.log(url);
							 | 
						||
| 
								 | 
							
								                $.ajax({
							 | 
						||
| 
								 | 
							
								                    url: url,
							 | 
						||
| 
								 | 
							
								                    success: function(data) {
							 | 
						||
| 
								 | 
							
								                        $('#view-conversation').html(data.view);
							 | 
						||
| 
								 | 
							
								                    }
							 | 
						||
| 
								 | 
							
								                })
							 | 
						||
| 
								 | 
							
								                toastr.success('{{ translate('New message arrived') }}', {
							 | 
						||
| 
								 | 
							
								                    CloseButton: true,
							 | 
						||
| 
								 | 
							
								                    ProgressBar: true
							 | 
						||
| 
								 | 
							
								                });
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                if($('#conversation-list').scrollTop() == 0){
							 | 
						||
| 
								 | 
							
								                    conversationList();
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								            }
							 | 
						||
| 
								 | 
							
								        });
							 | 
						||
| 
								 | 
							
								        function check_message() {
							 | 
						||
| 
								 | 
							
								            location.href = '{{ route('admin.message.list') }}';
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								        function check_order() {
							 | 
						||
| 
								 | 
							
								                    location.href = '{{ route('admin.order.list', ['status' => 'all']) }}';
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								        startFCM();
							 | 
						||
| 
								 | 
							
								        conversationList();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        if(getUrlParameter('conversation')){
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            conversationView();
							 | 
						||
| 
								 | 
							
								            vendorConversationView();
							 | 
						||
| 
								 | 
							
								            dmConversationView();
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								    </script>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <script>
							 | 
						||
| 
								 | 
							
								        function call_demo() {
							 | 
						||
| 
								 | 
							
								            toastr.info('Update option is disabled for demo!', {
							 | 
						||
| 
								 | 
							
								                CloseButton: true,
							 | 
						||
| 
								 | 
							
								                ProgressBar: true
							 | 
						||
| 
								 | 
							
								            });
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								    </script>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <!-- IE Support -->
							 | 
						||
| 
								 | 
							
								    <script>
							 | 
						||
| 
								 | 
							
								        if (/MSIE \d|Trident.*rv:/.test(navigator.userAgent)) document.write(
							 | 
						||
| 
								 | 
							
								            '<script src="{{ asset('public/assets/admin') }}/vendor/babel-polyfill/polyfill.min.js"><\/script>');
							 | 
						||
| 
								 | 
							
								    </script>
							 | 
						||
| 
								 | 
							
								    <script>
							 | 
						||
| 
								 | 
							
								        $(window).on('load', ()=> $('.pre--loader').fadeOut(600))
							 | 
						||
| 
								 | 
							
								    </script>
							 | 
						||
| 
								 | 
							
								</body>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								</html>
							 |