Viewing file: 18acc873a9a32189d9ea66aacac7b04da1c4cc08.php (12.91 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/custom.css')); ?>"> <link rel="shortcut icon" href="<?php echo e(asset('uploads/'.get_settings('app_favicon'))); ?>" type="image/x-icon"> <link rel="stylesheet" href="<?php echo e(asset('css/layouts.css')); ?>"> <!-- Google Font: Source Sans Pro --> <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'> <link href="<?php echo e(asset('plugins/select2/css/select2.min.css')); ?>" rel="stylesheet" /> <style> .select2-container .select2-selection--single{ height: 37px !important; } .select2-container--default{ width: 100% !important; } .lang-colour i{ color: black; font-size: 24px; } .brand-link{ height: 69px !important; } @media (max-width: 575.98px) { .content-wrapper>.content { padding: 20px 0px !important; } .content-wrapper { padding: 10px !important; } .respon-model-sidebar{ max-height: 500px; overflow-y: scroll; } .nav-treeview::before { height: calc(100% - 33px) !important; } .latest-list thead tr th { padding: 5px !important; font-size: 13px !important; } .card-title-small-box { font-size: 14px; } .ml-res-0{ margin-left: 0 !important; } .quick_start_ph { font-size: 13px ; } } </style> <?php if(Module::has('PaymentGateway')): ?> <link rel="stylesheet" href="<?php echo e(Module::asset('paymentgateway:css/paymentgateway.css')); ?>"> <?php endif; ?> <?php echo $__env->yieldContent('extra-css'); ?> </head> <body class="hold-transition sidebar-mini"> <div class="wrapper">
<!-- Navbar --> <nav class="main-header navbar fixed-top navbar-expand navbar-white navbar-light"> <!-- Left navbar links --> <ul class="navbar-nav"> <li class="nav-item"> <a class="nav-link nav-link-pushmenu" data-widget="pushmenu" href="#"><i class="fas fa-bars menu-icon"></i></a> </li> </ul>
<div class="ml-4 ml-res-0"> <div class="d-flex align-items-center "> <div class="admin-welcome-text"> <?php echo e(trans('admin.welcome')); ?> <?php echo e(auth('customer')->user()->full_name); ?>
</div> <img src="<?php echo e(asset('images/hand.gif')); ?>" class="hand-gif-icon ml-1" alt=""> </div> <div> <span class="welcome-sub-heading">Here’s what’s happening with your business today</span> </div> <div> </div> </div>
<!-- Right navbar links --> <ul class="navbar-nav ml-auto d-mobli-none"> <li class="nav-item dropdown"> <a class="nav-link lang-colour" data-toggle="dropdown" href="#" aria-expanded="false"> <i class="fa fa-language"></i> </a> <div class="dropdown-menu" style="left: inherit; right: 0px; text-align: center"> <span class="dropdown-item dropdown-header">Language</span> <?php $__currentLoopData = get_available_languages(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $lang): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <a href="<?php echo e(route('set.locale',['type'=>$lang])); ?>" class="dropdown-item"> <i class="fa fa-language mr-2"></i> <?php echo e($lang); ?>
</a> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </li>
<li class="nav-item ml-3 mr-3"> <div class="panel-text text-primary"><?php echo e(trans('customer.customer_panel')); ?></div> <div class="panel-text panel-date"><?php echo e(date('d M Y')); ?></div> </li>
<li class="nav-item dropdown user-menu"> <a href="<?php echo e(route('customer.settings.index')); ?>" class="nav-link dropdown-toggle nav-img" data-toggle="dropdown" aria-expanded="true"> <img src="<?php echo e(asset('uploads/'.auth('customer')->user()->profile_picture)); ?>" class="user-image img-circle elevation-2" alt="img"> </a> <ul class="dropdown-menu dropdown-menu-lg dropdown-menu-right dropdown-profile"> <!-- User image --> <li class="user-header border-bottom-1"> <img src="<?php echo e(asset('uploads/'.auth('customer')->user()->profile_picture)); ?>" class="img-circle elevation-2" alt="<?php echo e(auth('customer')->user()->full_name); ?>">
<p> <?php echo e(auth('customer')->user()->full_name); ?>
<small>Member since <?php echo e(date('M. Y')); ?></small> </p> </li> <!-- Menu Footer--> <li class="user-footer"> <a href="<?php echo e(route('customer.settings.index')); ?>" class="btn btn-info btn-flat"><?php echo e(trans('customer.profile')); ?></a> <a href="<?php echo e(route('customer.logout')); ?>" class="btn btn-flat float-right text-white bg-sms_received"><?php echo e(trans('customer.sign_out')); ?></a> </li> </ul> </li> </ul> </nav> <!-- /.navbar -->
<!-- Main Sidebar Container --> <aside class="main-sidebar sidebar-dark-primary"> <!-- Brand Logo --> <a href="<?php echo e(route('customer.dashboard')); ?>" class="brand-link text-center"> <?php if(get_settings('app_logo')): ?> <img class="layout-logo" src="<?php echo e(asset('uploads/'.get_settings('app_logo'))); ?>" alt=""> <?php endif; ?> </a>
<!-- Sidebar --> <div class="sidebar"> <!-- Sidebar user panel (optional) -->
<!-- Sidebar Menu --> <nav class="mt-2"> <?php echo $__env->make('layouts.includes.customer_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 copyright-info"> <strong><?php echo e(trans('customer.copyright')); ?> © <?php echo e(date('Y')); ?> <a target="_blank" href="#" class="footer-text"><?php echo e(get_settings('app_name')); ?></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" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body">
</div> <div class="modal-footer p-2"> <button id="modal-confirm-btn" type="submit" class="btn btn-primary btn-sm"><?php echo e(trans('customer.confirm')); ?></button> <button type="button" class="btn btn-secondary btn-sm" id="cancel" data-dismiss="modal"><?php echo e(trans('customer.cancel')); ?></button> </div> </div> <!-- /.modal-content --> </form> </div> <!-- /.modal-dialog --> </div> <!-- /.modal -->
<!-- REQUIRED SCRIPTS --> <script> "use strict"; </script> <!-- 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('plugins/jquery-validation/jquery.validate.js')); ?>"></script> <script src="<?php echo e(asset('js/adminlte.min.js')); ?>"></script> <script src="<?php echo e(asset('js/readmore.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> jQuery('button[type="submit"]').on('click', function (e) { e.preventDefault(); var form = $(this).parents('form:first'); if (form && form.valid()) { $(this).attr('disabled', 'disabled').addClass('disabled') $(this).html(' <i class="fa fa-spinner fa-spin"></i> Loading'); form.submit(); }else{ return false; } }); jQuery('#modal-confirm-btn').on('click', function (e) { var form = $(this).parents('form:first'); if (form.valid()) { $(this).attr('disabled', 'disabled').addClass('disabled') $(this).html(' <i class="fa fa-spinner fa-spin"></i> Loading'); form.submit(); } }); </script> <script> $( document ).ready(function() { $('.form-control-sm').attr('placeholder', 'Type here to search...'); }); </script> <script> $(document).on('click','.close', (e)=> { e.preventDefault(); $('.modal-backdrop').addClass('d-none') }); </script> <script> $(document).on('click','.item_download_apk', (e)=> { e.preventDefault() const download_apk = $('#download_apk').attr('download_apk'); localStorage.setItem("download_apk", "true"); window.location.href = download_apk; }); $(function () { const download_apk =localStorage.getItem("download_apk"); if(download_apk){ $('#download_apk_install').addClass('text-cross'); } $('[data-toggle="tooltip"]').tooltip() }) </script> <script> $(document).on('click','#cancel', (e)=> { e.preventDefault(); $('.modal-backdrop').addClass('d-none') }); </script> <?php if(session()->has('success') || session()->has('fail') || count($errors)>0): ?> <?php if (isset($component)) { $__componentOriginald4c8f106e1e33ab85c5d037c2504e2574c1b0975 = $component; } ?> <?php $component = $__env->getContainer()->make(App\View\Components\Alert::class, ['type' => session()->get('success')?'success':'danger','isErrors' => $errors,'message' => session()->get('success')??session()->get('fail')]); ?> <?php $component->withName('alert'); ?> <?php if ($component->shouldRender()): ?> <?php $__env->startComponent($component->resolveView(), $component->data()); ?> <?php $component->withAttributes([]); ?> <?php echo $__env->renderComponent(); ?> <?php endif; ?> <?php if (isset($__componentOriginald4c8f106e1e33ab85c5d037c2504e2574c1b0975)): ?> <?php $component = $__componentOriginald4c8f106e1e33ab85c5d037c2504e2574c1b0975; ?> <?php unset($__componentOriginald4c8f106e1e33ab85c5d037c2504e2574c1b0975); ?> <?php endif; ?> <?php endif; ?>
<?php echo $__env->yieldContent('extra-scripts'); ?> </body> </html> <?php /**PATH /home/picotech/domains/gateway.picotech.app/public_html/resources/views/layouts/customer.blade.php ENDPATH**/ ?>
|