File manager - Edit - /home/linknsbh/rassudr.online/storage/framework/views/acdb05294ce19f3cceee7cd78a2009c7a046bcfe.php
Back
<?php $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title"><?php echo e(__('Registered Users')); ?></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(__('Users Management')); ?></a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Registered Users')); ?></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-8"> <div class="card-title"><?php echo e(__('All Users')); ?></div> </div> <div class="col-lg-4"> <button class="btn btn-danger btn-sm float-right d-none bulk-delete mr-2 ml-3 mt-1" data-href="<?php echo e(route('admin.user_management.bulk_delete_user')); ?>"> <i class="flaticon-interface-5"></i> <?php echo e(__('Delete')); ?> </button> <form class="float-right" action="<?php echo e(route('admin.user_management.registered_users')); ?>" method="GET"> <input name="info" type="text" class="form-control minw-230" placeholder="<?php echo e(__('Search By Username or Email ID')); ?>" value="<?php echo e(!empty(request()->input('info')) ? request()->input('info') : ''); ?>"> </form> </div> </div> </div> <div class="card-body"> <div class="row"> <div class="col-lg-12"> <?php if(count($users) == 0): ?> <h3 class="text-center mt-2"><?php echo e(__('NO USER FOUND') . '!'); ?></h3> <?php else: ?> <div class="table-responsive"> <table class="table table-striped mt-3"> <thead> <tr> <th scope="col"> <input type="checkbox" class="bulk-check" data-val="all"> </th> <th scope="col"><?php echo e(__('Name')); ?></th> <th scope="col"><?php echo e(__('Username')); ?></th> <th scope="col"><?php echo e(__('Email')); ?></th> <th scope="col"><?php echo e(__('Email Status')); ?></th> <th scope="col"><?php echo e(__('Account Status')); ?></th> <th scope="col"><?php echo e(__('Actions')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $users; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $user): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <input type="checkbox" class="bulk-check" data-val="<?php echo e($user->id); ?>"> </td> <td><?php echo e($user->name); ?></td> <td><?php echo e($user->username); ?></td> <td><?php echo e($user->email); ?></td> <td> <form id="emailStatusForm-<?php echo e($user->id); ?>" class="d-inline-block" action="<?php echo e(route('admin.user_management.user.update_email_status', ['id' => $user->id])); ?>" method="post"> <?php echo csrf_field(); ?> <select class="form-control form-control-sm <?php echo e($user->email_verified_at != null ? 'bg-success' : 'bg-danger'); ?>" name="email_status" onchange="document.getElementById('emailStatusForm-<?php echo e($user->id); ?>').submit()"> <option value="1" <?php echo e($user->email_verified_at != null ? 'selected' : ''); ?>> <?php echo e(__('Verified')); ?> </option> <option value="2" <?php echo e($user->email_verified_at == null ? 'selected' : ''); ?>> <?php echo e(__('Unverified')); ?> </option> </select> </form> </td> <td> <form id="accountStatusForm-<?php echo e($user->id); ?>" class="d-inline-block" action="<?php echo e(route('admin.user_management.user.update_account_status', ['id' => $user->id])); ?>" method="post"> <?php echo csrf_field(); ?> <select class="form-control form-control-sm <?php echo e($user->status == 1 ? 'bg-success' : 'bg-danger'); ?>" name="account_status" onchange="document.getElementById('accountStatusForm-<?php echo e($user->id); ?>').submit()"> <option value="1" <?php echo e($user->status == 1 ? 'selected' : ''); ?>> <?php echo e(__('Active')); ?> </option> <option value="2" <?php echo e($user->status == 0 ? 'selected' : ''); ?>> <?php echo e(__('Deactive')); ?> </option> </select> </form> </td> <td> <div class="dropdown"> <button class="btn btn-secondary btn-sm dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <?php echo e(__('Select')); ?> </button> <div class="dropdown-menu" aria-labelledby="dropdownMenuButton"> <a href="<?php echo e(route('admin.user_management.registered_user.edit', ['id' => $user->id])); ?>" class="dropdown-item"> <?php echo e(__('Edit')); ?> </a> <a href="<?php echo e(route('admin.user_management.user.change_password', ['id' => $user->id])); ?>" class="dropdown-item"> <?php echo e(__('Change Password')); ?> </a> <form class="deleteForm d-block" action="<?php echo e(route('admin.user_management.user.delete', ['id' => $user->id])); ?>" method="post"> <?php echo csrf_field(); ?> <button type="submit" class="deleteBtn"> <?php echo e(__('Delete')); ?> </button> </form> <a href="<?php echo e(route('admin.user_management.user.secret-login', ['id' => $user->id])); ?>" class="dropdown-item" target="_blank"> <?php echo e(__('Secret Login')); ?> </a> </div> </div> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <?php endif; ?> </div> </div> </div> <div class="card-footer"> <div class="mt-3 text-center"> <div class="d-inline-block mx-auto"> <?php echo e($users->appends(['info' => request()->input('info')])->links()); ?> </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/linknsbh/rassudr.online/resources/views/admin/end-user/user/index.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.13 |
proxy
|
phpinfo
|
Settings