⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
public_html
/
storage
/
framework
/
views
/
View File Name :
9960482033dc09f4c47e03254f9559d75de2999c.php
<?php $selLang = \App\Models\User\Language::where([['code', request()->input('language')], ['user_id', \Illuminate\Support\Facades\Auth::guard('web')->user()->id]])->first(); $userDefaultLang = \App\Models\User\Language::where([['user_id', \Illuminate\Support\Facades\Auth::guard('web')->user()->id], ['is_default', 1]])->first(); $userLanguages = \App\Models\User\Language::where('user_id', \Illuminate\Support\Facades\Auth::guard('web')->user()->id)->get(); ?> <?php if(!empty($selLang) && $selLang->rtl == 1): ?> <?php $__env->startSection('styles'); ?> <style> form:not(.modal-form) input, form:not(.modal-form) textarea, form:not(.modal-form) select, select[name='userLanguage'] { direction: rtl; } form:not(.modal-form) .note-editor.note-frame .note-editing-area .note-editable { direction: rtl; text-align: right; } </style> <?php $__env->stopSection(); ?> <?php endif; ?> <?php $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title"><?php echo e($keywords['Categories'] ?? __('Categories')); ?></h4> <ul class="breadcrumbs"> <li class="nav-home"> <a href="<?php echo e(route('user-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($keywords['Appointment_Settings'] ?? __('Appointment Settings')); ?></a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e($keywords['Categories'] ?? __('Categories')); ?></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-4"> <div class="card-title d-inline-block"><?php echo e($keywords['Categories'] ?? __('Categories')); ?></div> </div> <div class="col-lg-3"> </div> <div class="col-lg-4 offset-lg-1 mt-2 mt-lg-0"> <a href="#" data-toggle="modal" data-target="#createModal" class="btn btn-primary btn-sm float-lg-right float-left"><i class="fas fa-plus"></i> <?php echo e($keywords['Add'] ?? __('Add')); ?></a> <button class="btn btn-danger float-right btn-sm mr-2 d-none bulk-delete" data-href="<?php echo e(route('user.bulk-delete-category')); ?>"> <i class="flaticon-interface-5"></i> <?php echo e($keywords['Delete'] ?? __('Delete')); ?> </button> </div> </div> </div> <div class="card-body"> <div class="row"> <div class="col-lg-12"> <?php if($errors->any()): ?> <div class="alert alert-danger"> <ul> <?php $__currentLoopData = $errors->all(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $error): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li><?php echo e($error); ?></li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> </div> <?php endif; ?> <?php if(count($categories) == 0): ?> <h3 class="text-center"><?php echo e($keywords['NO_CATEGORY_FOUND'] ?? __('NO CATEGORY FOUND')); ?> ! </h3> <?php else: ?> <div class="table-responsive"> <table class="table table-striped mt-3" id="basic-datatables"> <thead> <tr> <th scope="col"> <input type="checkbox" class="bulk-check" data-val="all"> </th> <th scope="col"><?php echo e($keywords['Category_Icon'] ?? __('Category Icon')); ?> </th> <th scope="col"><?php echo e($keywords['Category_Name'] ?? __('Category Name')); ?> </th> <th scope="col"><?php echo e($keywords['Fee'] ?? __('Fee')); ?> (<?php echo e($userBs->base_currency_symbol); ?>)</th> <th scope="col"><?php echo e($keywords['Actions'] ?? __('Actions')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $categories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $category): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <input type="checkbox" class="bulk-check" data-val="<?php echo e($category->id); ?>"> </td> <td> <img width="100" src="<?php echo e(asset('assets/user/img/category') . '/' . $category->image); ?>" alt="Icon"> </td> <td><?php echo e($category->name); ?></td> <td><?php echo e($category->appointment_price); ?></td> <td> <a class="btn btn-info btn-sm mr-1 " href="<?php echo e(route('user.forminput', ['id' => $category->id]) . '?language=' . $userDefaultLang->code); ?>"> <span class="btn-label"> <i class="fas fa-file"></i> </span> <?php echo e($keywords['Form'] ?? __('Form')); ?> </a> <a class="btn btn-secondary btn-sm mr-1 editbtnAd" href="#" data-toggle="modal" data-target="#editCategoryModal" data-id="<?php echo e($category->id); ?>" data-modal="editCategoryModal" data-name="<?php echo e($category->name); ?>" data-price="<?php echo e($category->appointment_price); ?>" data-image="<?php echo e($category->image); ?>" data-edit="editCategory"> <span class="btn-label"> <i class="fas fa-edit"></i> </span> <?php echo e($keywords['Edit'] ?? __('Edit')); ?> </a> <form class="deleteform d-inline-block" action="<?php echo e(route('user.category.delete', ['category' => $category->id])); ?>" method="post"> <?php echo csrf_field(); ?> <button type="submit" class="btn btn-danger btn-sm deletebtn"> <span class="btn-label"> <i class="fas fa-trash"></i> </span> <?php echo e($keywords['Delete'] ?? __('Delete')); ?> </button> </form> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <?php endif; ?> </div> </div> </div> <div class="card-footer"></div> </div> </div> </div> <?php echo $__env->make('user.appointment.modals.create-category', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php echo $__env->make('user.appointment.modals.edit-category', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('scripts'); ?> <script src="<?php echo e(asset('assets/user/dashboard/js/advertisement.js')); ?>"></script> <?php $__env->stopSection(); ?> <?php echo $__env->make('user.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/id/public_html/resources/views/user/appointment/category.blade.php ENDPATH**/ ?>