One Hat Cyber Team
Your IP :
216.73.216.93
Server IP :
178.63.234.5
Server :
Linux whm01.ins-jo.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Server Software :
Apache
PHP Version :
8.1.32
Buat File
|
Buat Folder
Dir :
~
/
home
/
business
/
www
/
storage
/
framework
/
views
/
Edit File Name :
b8be6fd77aa8fcdc97eca9fbe864961469742029.php
<?php $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title"><?php echo e(__('Email Settings')); ?></h4> <ul class="breadcrumbs"> <li class="nav-home"> <a href="<?php echo e(route('admin.dashboard')); ?>"> <i class="flaticon-home"></i> </a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Settings')); ?></a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Email Settings')); ?></a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Mail Templates')); ?></a> </li> </ul> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="row"> <div class="col-lg-6"> <div class="card-title"> <?php echo e(__('Mail Templates')); ?> </div> </div> </div> </div> <div class="card-body"> <div class="row"> <div class="col-lg-12"> <?php if(count($templates) == 0): ?> <h3 class="text-center"><?php echo e(__('NO MAIL TEMPLATE FOUND!')); ?></h3> <?php else: ?> <div class="table-responsive"> <table class="table table-striped mt-3"> <thead> <tr> <th scope="col">#</th> <th scope="col"><?php echo e(__('Mail Type')); ?></th> <th scope="col"><?php echo e(__('Mail Subject')); ?></th> <th scope="col"><?php echo e(__('Action')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $templates; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $template): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($loop->iteration); ?></td> <td > <?php echo e($template->email_type); ?> <?php if($template->email_type == 'custom_domain_connected'): ?> <p class="mb-0"> <small class="text-secondary">(After Admin connects a custom domain with server & change the status to 'connected' for that domain request)</small> </p> <?php endif; ?> <?php if($template->email_type == 'custom_domain_rejected'): ?> <p class="mb-0"> <small class="text-secondary">(After Admin change the status to 'rejected' for a custom domain request)</small> </p> <?php endif; ?> <?php if($template->email_type == 'registration_with_premium_package'): ?> <p class="mb-0"> <small class="text-secondary">(After user registers with a premium package using online payment gateway)</small> </p> <?php endif; ?> <?php if($template->email_type == 'registration_with_trial_package'): ?> <p class="mb-0"> <small class="text-secondary">(After user registers with a trial package)</small> </p> <?php endif; ?> <?php if($template->email_type == 'registration_with_free_package'): ?> <p class="mb-0"> <small class="text-secondary">(After user registers with a free package)</small> </p> <?php endif; ?> </td> <td><?php echo e($template->email_subject); ?></td> <td> <a class="btn btn-secondary btn-sm" href="<?php echo e(route('admin.edit_mail_template', ['id' => $template->id])); ?>" > <span class="btn-label"> <i class="fas fa-edit"></i> </span> <?php echo e(__('Edit')); ?> </a> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <?php endif; ?> </div> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('admin.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/business/public_html/resources/views/admin/basic/email/mail_templates.blade.php ENDPATH**/ ?>
Save