Viewing file: 6faa0648284ebe1cc8e7672f2065766843ce831f.php (10.18 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html>
<html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="x-ua-compatible" content="ie=edge">
<title><?php echo $__env->yieldContent('title'); ?></title>
<!-- Font Awesome Icons --> <link rel="stylesheet" href="<?php echo e(asset('plugins/fontawesome-free/css/all.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('plugins/toastr/toastr.min.css')); ?>"> <!-- Theme style --> <link rel="stylesheet" href="<?php echo e(asset('css/adminlte.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('css/layouts.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('css/custom.css')); ?>"> <link rel="shortcut icon" href="<?php echo e(asset('uploads/'.get_settings('app_favicon'))); ?>" type="image/x-icon"> <link href="<?php echo e(asset('plugins/select2/css/select2.min.css')); ?>" rel="stylesheet" />
<!-- Google Font: Source Sans Pro --> <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <style> .select2-container .select2-selection--single{ height: 37px !important; } .main-sidebar{ bottom: 0; float: none !important; left: 0; position: fixed !important; top: 0; } .main-sidebar::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); background-color: #F5F5F5; }
.main-sidebar ::-webkit-scrollbar { width: 4px; background-color: #ffffff40; }
.main-sidebar ::-webkit-scrollbar-thumb { background-color: #c1c1c1; border: 2px solid #c1c1c1; border-radius: 50px; } </style> <?php echo $__env->yieldContent('extra-css'); ?> </head> <body class="hold-transition sidebar-mini"> <div class="wrapper">
<!-- Navbar --> <nav class="main-header navbar navbar-expand navbar-white navbar-light"> <!-- Left navbar links --> <ul class="navbar-nav"> <li class="nav-item"> <a class="nav-link" data-widget="pushmenu" href="#"><i class="fas fa-bars"></i></a> </li> </ul>
<!-- Right navbar links --> <ul class="navbar-nav ml-auto">
<li class="nav-item dropdown user-menu"> <a href="<?php echo e(route('admin.settings.index')); ?>" class="nav-link dropdown-toggle" data-toggle="dropdown" aria-expanded="true"> <img src="<?php echo e(asset('uploads/'.auth()->user()->profile_picture)); ?>" class="user-image img-circle elevation-2" alt="User Image"> </a> <ul class="dropdown-menu dropdown-menu-lg dropdown-menu-right dropdown-profile"> <!-- User image --> <li class="user-header bg-primary"> <img src="<?php echo e(asset('uploads/'.auth()->user()->profile_picture)); ?>" class="img-circle elevation-2" alt="User Image">
<p> <?php echo e(auth()->user()->name); ?>
<small><?php echo e(trans('customer.member_since')); ?> <?php echo e(date('M. Y')); ?></small> </p> </li> <!-- Menu Footer--> <li class="user-footer"> <a href="<?php echo e(route('admin.settings.index')); ?>" class="btn btn-default btn-flat"><?php echo e(trans('customer.profile')); ?></a> <a href="<?php echo e(route('admin.logout')); ?>" class="btn btn-default btn-flat float-right"><?php echo e(trans('customer.sign_out')); ?></a> </li> </ul> </li> </ul> </nav> <!-- /.navbar -->
<!-- Main Sidebar Container --> <aside class="main-sidebar elevation-2"> <!-- Brand Logo --> <a href="<?php echo e(route('admin.dashboard')); ?>" class="brand-link navbar-light bg-light"> <?php if(get_settings('app_logo')): ?> <img class="layout-logo" src="<?php echo e(asset('uploads/'.get_settings('app_logo'))); ?>" alt="Logo"> <?php endif; ?> <span class="brand-text font-weight-light"><?php echo e(get_settings('app_name')); ?></span> </a>
<!-- Sidebar --> <div class="sidebar"> <!-- Sidebar user panel (optional) --> <div class="user-panel mt-3 pb-3 mb-3 d-flex"> <div class="image"> <img src="<?php echo e(asset('uploads/'.auth()->user()->profile_picture)); ?>" class="img-circle elevation-2" alt="User Image"> </div> <div class="info"> <a href="<?php echo e(route('admin.settings.index')); ?>" class="d-block"><?php echo e(auth()->user()->name); ?></a> </div> </div>
<!-- Sidebar Menu --> <nav class="mt-2"> <?php echo $__env->make('layouts.includes.admin_sidebar', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> </nav> <!-- /.sidebar-menu --> </div> <!-- /.sidebar --> </aside>
<!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <?php echo $__env->yieldContent('content'); ?> </div> <!-- /.content-wrapper -->
<!-- /.control-sidebar -->
<!-- Main Footer --> <footer class="main-footer"> <!-- To the right --> <div class="float-right"> <strong><?php echo e(trans('customer.copyright')); ?> © <?php echo e(date('Y')); ?> <a target="_blank" href="https://picotech.com.bd">Pico Technology</a>.</strong> <?php echo e(trans('customer.all_rights_reserved')); ?>. </div>
</footer> </div> <!-- ./wrapper -->
<!-- Confirmation modal --> <div class="modal fade" id="modal-confirm"> <div class="modal-dialog"> <form id="modal-form"> <?php echo csrf_field(); ?> <div id="customInput"></div> <div class="modal-content"> <div class="modal-header p-2"> <h4 class="modal-title"><?php echo e(trans('customer.confirmation')); ?></h4> <button type="button" class="close modal-close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true"><i class="fas fa-times"></i></span> </button> </div> <div class="modal-body">
</div> <div class="modal-footer p-2"> <button id="modal-confirm-btn" type="button" class="btn btn-primary btn-sm"><?php echo e(trans('customer.confirm')); ?></button> <button type="button" class="btn btn-secondary btn-sm" data-dismiss="modal"><?php echo e(trans('customer.cancel')); ?></button> </div> </div> <!-- /.modal-content --> </form> </div> <!-- /.modal-dialog --> </div> <!-- /.modal -->
<!-- REQUIRED SCRIPTS --> <!-- jQuery --> <script src="<?php echo e(asset('plugins/jquery/jquery.min.js')); ?>"></script> <!-- Bootstrap 4 --> <script src="<?php echo e(asset('plugins/bootstrap/js/bootstrap.bundle.min.js')); ?>"></script> <!-- AdminLTE App --> <script src="<?php echo e(asset('js/adminlte.min.js')); ?>"></script> <script src="<?php echo e(asset('js/custom.js')); ?>"></script> <script src="<?php echo e(asset('plugins/select2/js/select2.full.js')); ?>"></script> <script> $(document).on('click','.gateway-bb', function (e){ const type = $(this).attr('data-type'); localStorage.setItem("gateway_type", type); });
</script> <script> if ('<?php echo e(request()->segment(2)== 'settings'); ?>') { const gateway = localStorage.getItem("gateway_type");
console.log(gateway) if (gateway) { $("#" + gateway).trigger('click'); } }else { localStorage.clear(); } </script>
<?php if(session()->has('success') || session()->has('fail') || count($errors)>0): ?> <?php if (isset($component)) { $__componentOriginald4c8f106e1e33ab85c5d037c2504e2574c1b0975 = $component; } ?> <?php $component = App\View\Components\Alert::resolve(['type' => session()->get('success')?'success':'danger','isErrors' => $errors,'message' => session()->get('success')??session()->get('fail')] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?> <?php $component->withName('alert'); ?> <?php if ($component->shouldRender()): ?> <?php $__env->startComponent($component->resolveView(), $component->data()); ?> <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Alert::class))->getConstructor()): ?> <?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?> <?php endif; ?> <?php $component->withAttributes([]); ?> <?php echo $__env->renderComponent(); ?> <?php endif; ?> <?php if (isset($__componentOriginald4c8f106e1e33ab85c5d037c2504e2574c1b0975)): ?> <?php $component = $__componentOriginald4c8f106e1e33ab85c5d037c2504e2574c1b0975; ?> <?php unset($__componentOriginald4c8f106e1e33ab85c5d037c2504e2574c1b0975); ?> <?php endif; ?> <?php endif; ?> <script src="<?php echo e(asset('plugins/chart.js/Chart.min.js')); ?>"></script>
<script src="<?php echo e(asset('plugins/jquery-validation/jquery.validate.min.js')); ?>"></script> <script src="<?php echo e(asset('plugins/datatables/jquery.dataTables.min.js')); ?>"></script> <script src="<?php echo e(asset('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js')); ?>"></script> <script src="<?php echo e(asset('plugins/datatables-responsive/js/dataTables.responsive.min.js')); ?>"></script> <script src="<?php echo e(asset('plugins/datatables-responsive/js/responsive.bootstrap4.min.js')); ?>"></script> <script src="<?php echo e(asset('js/readmore.min.js')); ?>"></script> <?php echo $__env->yieldContent('extra-scripts'); ?> </body> </html> <?php /**PATH /home/picotech/domains/picomail.picotech.app/public_html/resources/views/layouts/admin.blade.php ENDPATH**/ ?>
|