<?php $__env->startSection('content'); ?>
<div class="aiz-titlebar text-left mt-2 mb-3">
<div class="align-items-center">
<h1 class="h3"><?php echo e(translate('All Customers')); ?></h1>
</div>
</div>
<div class="card">
<form class="" id="sort_customers" action="" method="GET">
<div class="card-header row gutters-5">
<div class="col">
<h5 class="mb-0 h6"><?php echo e(translate('Customers')); ?></h5>
</div>
<div class="dropdown mb-2 mb-md-0">
<button class="btn border dropdown-toggle" type="button" data-toggle="dropdown">
<?php echo e(translate('Bulk Action')); ?>
</button>
<div class="dropdown-menu dropdown-menu-right">
<a class="dropdown-item confirm-alert" href="javascript:void(0)" data-target="#bulk-delete-modal"><?php echo e(translate('Delete selection')); ?></a>
</div>
</div>
<div class="col-md-3">
<div class="form-group mb-0">
<input type="text" class="form-control" id="search" name="search"<?php if(isset($sort_search)): ?> value="<?php echo e($sort_search); ?>" <?php endif; ?> placeholder="<?php echo e(translate('Type email or name & Enter')); ?>">
</div>
</div>
</div>
<div class="card-body">
<table class="table aiz-table mb-0">
<thead>
<tr>
<!--<th data-breakpoints="lg">#</th>-->
<th>
<div class="form-group">
<div class="aiz-checkbox-inline">
<label class="aiz-checkbox">
<input type="checkbox" class="check-all">
<span class="aiz-square-check"></span>
</label>
</div>
</div>
</th>
<th><?php echo e(translate('Name')); ?></th>
<th data-breakpoints="lg"><?php echo e(translate('Email Address')); ?></th>
<th data-breakpoints="lg"><?php echo e(translate('Phone')); ?></th>
<th data-breakpoints="lg"><?php echo e(translate('Package')); ?></th>
<th data-breakpoints="lg"><?php echo e(translate('Wallet Balance')); ?></th>
<th class="text-right"><?php echo e(translate('Options')); ?></th>
</tr>
</thead>
<tbody>
<?php $__currentLoopData = $users; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $user): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php if($user != null): ?>
<tr>
<!--<td><?php echo e(($key+1) + ($users->currentPage() - 1)*$users->perPage()); ?></td>-->
<td>
<div class="form-group">
<div class="aiz-checkbox-inline">
<label class="aiz-checkbox">
<input type="checkbox" class="check-one" name="id[]" value="<?php echo e($user->id); ?>">
<span class="aiz-square-check"></span>
</label>
</div>
</div>
</td>
<td><?php if($user->banned == 1): ?> <i class="fa fa-ban text-danger" aria-hidden="true"></i> <?php endif; ?> <?php echo e($user->name); ?></td>
<td><?php echo e($user->email); ?></td>
<td><?php echo e($user->phone); ?></td>
<td>
<?php if($user->customer_package != null): ?>
<?php echo e($user->customer_package->getTranslation('name')); ?>
<?php endif; ?>
</td>
<td><?php echo e(single_price($user->balance)); ?></td>
<td class="text-right">
<?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('login_as_customer')): ?>
<a href="<?php echo e(route('customers.login', encrypt($user->id))); ?>" class="btn btn-soft-primary btn-icon btn-circle btn-sm" title="<?php echo e(translate('Log in as this Customer')); ?>">
<i class="las la-edit"></i>
</a>
<?php endif; ?>
<?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('ban_customer')): ?>
<?php if($user->banned != 1): ?>
<a href="#" class="btn btn-soft-danger btn-icon btn-circle btn-sm" onclick="confirm_ban('<?php echo e(route('customers.ban', encrypt($user->id))); ?>');" title="<?php echo e(translate('Ban this Customer')); ?>">
<i class="las la-user-slash"></i>
</a>
<?php else: ?>
<a href="#" class="btn btn-soft-success btn-icon btn-circle btn-sm" onclick="confirm_unban('<?php echo e(route('customers.ban', encrypt($user->id))); ?>');" title="<?php echo e(translate('Unban this Customer')); ?>">
<i class="las la-user-check"></i>
</a>
<?php endif; ?>
<?php endif; ?>
<?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('delete_customer')): ?>
<a href="#" class="btn btn-soft-danger btn-icon btn-circle btn-sm confirm-delete" data-href="<?php echo e(route('customers.destroy', $user->id)); ?>" title="<?php echo e(translate('Delete')); ?>">
<i class="las la-trash"></i>
</a>
<?php endif; ?>
</td>
</tr>
<?php endif; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
<div class="aiz-pagination">
<?php echo e($users->appends(request()->input())->links()); ?>
</div>
</div>
</form>
</div>
<div class="modal fade" id="confirm-ban">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title h6"><?php echo e(translate('Confirmation')); ?></h5>
<button type="button" class="close" data-dismiss="modal"></button>
</div>
<div class="modal-body">
<p><?php echo e(translate('Do you really want to ban this Customer?')); ?></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-light" data-dismiss="modal"><?php echo e(translate('Cancel')); ?></button>
<a type="button" id="confirmation" class="btn btn-primary"><?php echo e(translate('Proceed!')); ?></a>
</div>
</div>
</div>
</div>
<div class="modal fade" id="confirm-unban">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title h6"><?php echo e(translate('Confirmation')); ?></h5>
<button type="button" class="close" data-dismiss="modal"></button>
</div>
<div class="modal-body">
<p><?php echo e(translate('Do you really want to unban this Customer?')); ?></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-light" data-dismiss="modal"><?php echo e(translate('Cancel')); ?></button>
<a type="button" id="confirmationunban" class="btn btn-primary"><?php echo e(translate('Proceed!')); ?></a>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('modal'); ?>
<!-- Delete modal -->
<?php echo $__env->make('modals.delete_modal', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<!-- Bulk Delete modal -->
<?php echo $__env->make('modals.bulk_delete_modal', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('script'); ?>
<script type="text/javascript">
$(document).on("change", ".check-all", function() {
if(this.checked) {
// Iterate each checkbox
$('.check-one:checkbox').each(function() {
this.checked = true;
});
} else {
$('.check-one:checkbox').each(function() {
this.checked = false;
});
}
});
function sort_customers(el){
$('#sort_customers').submit();
}
function confirm_ban(url)
{
$('#confirm-ban').modal('show', {backdrop: 'static'});
document.getElementById('confirmation').setAttribute('href' , url);
}
function confirm_unban(url)
{
$('#confirm-unban').modal('show', {backdrop: 'static'});
document.getElementById('confirmationunban').setAttribute('href' , url);
}
function bulk_delete() {
var data = new FormData($('#sort_customers')[0]);
$.ajax({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
url: "<?php echo e(route('bulk-customer-delete')); ?>",
type: 'POST',
data: data,
cache: false,
contentType: false,
processData: false,
success: function (response) {
if(response == 1) {
location.reload();
}
}
});
}
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('backend.layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/devs.lapieza.net/resources/views/backend/customer/customers/index.blade.php ENDPATH**/ ?> |