<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="csrf-token" content="<?php echo e(csrf_token()); ?>">
    <title>KM DOH</title>
    <link rel="icon" href="<?php echo e(asset('image/logo.ico')); ?>" type="image/gif">

    <link rel="stylesheet" href="<?php echo e(asset('css/bstyle.css')); ?>">
    <link rel="stylesheet" href="<?php echo e(asset('css/all.css')); ?>">
    <link rel="stylesheet" href="<?php echo e(asset('plugins/bootstrap/css/bootstrap.min.css')); ?>" />
    <link rel="stylesheet" href="<?php echo e(asset('plugins/datatable/DataTables-1.11.3/css/dataTables.bootstrap5.min.css')); ?>">
    <link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
        integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
    <link rel="preconnect" href="https://fonts.gstatic.com" />
    <link href="https://fonts.googleapis.com/css2?family=Itim&display=swap" rel="stylesheet" />

    <script src="<?php echo e(asset('plugins/jQuery/jquery.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/jquery-validation/jquery.validate.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/moment/moment.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/moment/moment-with-locales.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/datatable/DataTables-1.11.3/js/jquery.dataTables.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/datatable/DataTables-1.11.3/js/dataTables.bootstrap5.min.js')); ?>"></script>
    <script src="https://code.highcharts.com/highcharts.js"></script>
    <script src="https://code.highcharts.com/modules/exporting.js"></script>
    <script src="https://code.highcharts.com/modules/export-data.js"></script>
    <script src="https://code.highcharts.com/modules/data.js"></script>
    <script src="https://code.highcharts.com/modules/drilldown.js"></script>
    <script src="https://code.highcharts.com/modules/accessibility.js"></script>
    <script src="<?php echo e(asset('plugins/bootstrap/js/bootstrap.bundle.min.js')); ?>"></script>
    <script src="<?php echo e(asset('js/jquery.dataTables.min.js')); ?>"></script>
    <script src="<?php echo e(asset('js/dataTables.bootstrap5.min.js')); ?>"></script>
    <link rel="stylesheet" href="<?php echo e(asset('plugins/datatable/Responsive-2.2.9/css/responsive.dataTables.min.css')); ?>">
    <script src="<?php echo e(asset('plugins/datatable/Responsive-2.2.9/js/dataTables.responsive.min.js')); ?>"></script>

    <!-- select2-bootstrap-5-theme -->
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" />
    <script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>

    <link rel="stylesheet"
        href="https://cdn.jsdelivr.net/npm/select2-bootstrap-5-theme@1.1.1/dist/select2-bootstrap-5-theme.min.css" />
    <link rel="stylesheet"
        href="https://cdn.jsdelivr.net/npm/select2-bootstrap-5-theme@1.1.1/dist/select2-bootstrap-5-theme.rtl.min.css" />

    <script src="//cdn.jsdelivr.net/npm/sweetalert2@10"></script>

    <!-- disable the browser back button -->
    <!-- <script type="text/javascript">
        function disableBack() { window.history.forward(); }
        setTimeout("disableBack()", 0);
        window.onunload = function () { null };
    </script> -->
    <script>
    $(window).bind("pageshow", function(event) {
        $(".loader").hide();
    });
    </script>
</head>

<body>
    <div class="loader"></div>

    <?php echo $__env->make('layouts/partials/back/sidebar', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
    <?php echo $__env->yieldContent('content'); ?>

    <script>
    $(".loader").hide();
    </script>
</body>

</html><?php /**PATH C:\xampp\htdocs\km-web\resources\views/layouts/back/master.blade.php ENDPATH**/ ?>