Viewing file: 52c4ce5b00d95226670e41c573833cd6.php (1.98 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<script src="<?php echo e(asset('backend/plugins/jquery/jquery.min.js')); ?>"></script> <script src="<?php echo e(asset('backend/plugins/bootstrap/js/bootstrap.bundle.min.js')); ?>"></script> <script src="<?php echo e(asset('backend/plugins/toastr/toastr.min.js')); ?>"></script> <script src="<?php echo e(asset('backend/dist/js/adminlte.min.js')); ?>"></script>
<script> <?php if(Session::has('success')): ?> toastr.success("<?php echo e(Session::get('success')); ?>", 'Success!') <?php elseif(Session::has('warning')): ?> toastr.warning("<?php echo e(Session::get('warning')); ?>", 'Warning!') <?php elseif(Session::has('error')): ?> toastr.error("<?php echo e(Session::get('error')); ?>", 'Error!') <?php endif; ?> // toast config toastr.options = { "closeButton": true, "debug": false, "newestOnTop": true, "progressBar": true, "positionClass": "toast-top-right", "preventDuplicates": true, "onclick": null, "showDuration": "300", "hideDuration": "1000", "timeOut": "5000", "extendedTimeOut": "1000", "showEasing": "swing", "hideEasing": "linear", "hideMethod": "fadeOut" }
$.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') } });
// Navbar Collapse Toggle var isNavCollapse = JSON.parse(localStorage.getItem("sidebar_collapse")) isNavCollapse ? $('body').addClass('sidebar-collapse') : null;
$('#nav_collapse').on('click', function() { localStorage.setItem("sidebar_collapse", isNavCollapse == true ? false : true); }); </script>
<!-- Custom Script --> <?php echo $__env->yieldContent('script'); ?> <?php echo $__env->yieldPushContent('js'); ?> <?php echo $__env->yieldPushContent('script'); ?> <?php echo $setting->body_script; ?>
<?php /**PATH E:\add listing 8-9-25\addListing\resources\views/admin/layouts/partials/scripts.blade.php ENDPATH**/ ?>
|