[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: 34c87d0449d4ad0ce8a71bcfe15c565c.php
<?php $__env->startSection('content'); ?> <div class="row"> <div class="col-xl-3 col-md-6"> <div class="card mb-4 primary-card dashboard-card"> <div class="card-body"> <div class="d-flex"> <div class="flex-grow-1"> <h5><?php echo e(_lang('Total User')); ?></h5> <h4 class="pt-1 mb-0"><b><?php echo e($total_user); ?></b></h4> </div> </div> </div> </div> </div> <div class="col-xl-3 col-md-6"> <div class="card mb-4 success-card dashboard-card"> <div class="card-body"> <div class="d-flex"> <div class="flex-grow-1"> <h5><?php echo e(_lang('Total Owner')); ?></h5> <h4 class="pt-1 mb-0"><b><?php echo e($total_owner); ?></b></h4> </div> </div> </div> </div> </div> <div class="col-xl-3 col-md-6"> <div class="card mb-4 warning-card dashboard-card"> <div class="card-body"> <div class="d-flex"> <div class="flex-grow-1"> <h5><?php echo e(_lang('Trial User')); ?></h5> <h4 class="pt-1 mb-0"><b><?php echo e($trial_users); ?></b></h4> </div> </div> </div> </div> </div> <div class="col-xl-3 col-md-6"> <div class="card mb-4 danger-card dashboard-card"> <div class="card-body"> <div class="d-flex"> <div class="flex-grow-1"> <h5><?php echo e(_lang('Expired Users')); ?></h5> <h4 class="pt-1 mb-0"><b><?php echo e($expired_users); ?></b></h4> </div> </div> </div> </div> </div> </div> <div class="row"> <div class="col-md-4 col-sm-5 mb-4"> <div class="card h-100"> <div class="card-header d-flex align-items-center"> <span><?php echo e(_lang('Package Wise Subscribed')); ?></span> </div> <div class="card-body"> <h5 class="text-center loading-chart"><i class="fas fa-spinner fa-spin"></i> <?php echo e(_lang('Loading Chart')); ?></h5> <canvas id="packageOverview"></canvas> </div> </div> </div> <div class="col-md-8 col-sm-7 mb-4"> <div class="card h-100"> <div class="card-header d-flex align-items-center"> <span><?php echo e(_lang('Subscription Payments').' - '.date('Y')); ?></span> </div> <div class="card-body"> <h5 class="text-center loading-chart"><i class="fas fa-spinner fa-spin"></i> <?php echo e(_lang('Loading Chart')); ?></h5> <canvas id="revenueAnalysis"></canvas> </div> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <div class="card mb-4"> <div class="card-header"> <?php echo e(_lang('New Registered Users')); ?> </div> <div class="card-body"> <div class="table-responsive"> <table class="table"> <thead> <tr> <th><?php echo e(_lang('Name')); ?></th> <th><?php echo e(_lang('Package')); ?></th> <th><?php echo e(_lang('Membership')); ?></th> <th><?php echo e(_lang('Status')); ?></th> <th class="text-center"><?php echo e(_lang('Action')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $newUsers; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $user): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($user->name); ?></td> <td><?php echo e($user->package->name); ?></td> <td><?php echo e(ucwords($user->membership_type)); ?></td> <td><?php echo xss_clean(status($user->status)); ?></td> <td class="text-center"> <div class="dropdown text-center"> <button class="btn btn-outline-primary btn-xs dropdown-toggle" type="button" data-toggle="dropdown"><?php echo e(_lang('Action')); ?></button> <div class="dropdown-menu"> <a class="dropdown-item" href="<?php echo e(route('users.edit', $user->id)); ?>"><i class="ti-pencil-alt mr-2"></i><?php echo e(_lang('Edit')); ?></a> <a class="dropdown-item" href="<?php echo e(route('users.show', $user->id)); ?>"><i class="ti-eye mr-2"></i><?php echo e(_lang('View')); ?></a> <a class="dropdown-item" href="<?php echo e(route('users.login_as_user', $user->id)); ?>"><i class="ti-user mr-2"></i><?php echo e(_lang('Login as User')); ?></a> <form action="<?php echo e(route('users.destroy', $user->id)); ?>" method="post"> <?php echo csrf_field(); ?> <input name="_method" type="hidden" value="DELETE"> <button class="dropdown-item btn-remove" type="submit"><i class="ti-trash mr-2"></i><?php echo e(_lang('Delete')); ?></button> </form> </div> </div> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <div class="card mb-4"> <div class="card-header"> <?php echo e(_lang('Recent Subscription Payments')); ?> </div> <div class="card-body"> <div class="table-responsive"> <table class="table"> <thead> <tr> <th><?php echo e(_lang('User')); ?></th> <th><?php echo e(_lang('Order ID')); ?></th> <th><?php echo e(_lang('Method')); ?></th> <th><?php echo e(_lang('Package')); ?></th> <th class="text-right"><?php echo e(_lang('Amount')); ?></th> <th class="text-center"><?php echo e(_lang('Status')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $recentPayments; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $recentPayment): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($recentPayment->user->name); ?></td> <td><?php echo e($recentPayment->order_id); ?></td> <td><?php echo e($recentPayment->payment_method); ?></td> <td><?php echo e($recentPayment->package->name); ?></td> <td class="text-right"><?php echo e(decimalPlace($recentPayment->amount, currency_symbol())); ?></td> <td class="text-center"> <?php if($recentPayment->status == 0): ?> <?php echo xss_clean(show_status(_lang('Pending'), 'warning')); ?> <?php elseif($recentPayment->status == 1): ?> <?php echo xss_clean(show_status(_lang('Completed'), 'success')); ?> <?php elseif($recentPayment->status == 2): ?> <?php echo xss_clean(show_status(_lang('Hold'), 'primary')); ?> <?php elseif($recentPayment->status == 3): ?> <?php echo xss_clean(show_status(_lang('Refund'), 'info')); ?> <?php elseif($recentPayment->status == 4): ?> <?php echo xss_clean(show_status(_lang('Cancelled'), 'danger')); ?> <?php endif; ?> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('js-script'); ?> <script src="<?php echo e(asset('public/backend/plugins/chartJs/chart.min.js')); ?>"></script> <script src="<?php echo e(asset('public/backend/assets/js/dashboard-admin.js?v=1.3')); ?>"></script> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/eliosofonline/public_html/resources/views/backend/admin/dashboard-admin.blade.php ENDPATH**/ ?>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.85 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002