⚝
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
/
crm.dev-unit.com
/
storage
/
framework
/
views
/
View File Name :
84c3e99ae3c71a5299efd842f58e7c04da5f18a3.php
<div class="row"> <div class="mt-0 mb-3 col-12 d-flex justify-content-end search-display-block"> <?php if(!empty($customer)): ?> <div class="mt-2"> <?php echo e(Form::select('status', $projectStatusArr, $statusFilter, ['id' => 'filterStatus', 'class' => 'form-control', 'placeholder' => __('messages.placeholder.select_status')])); ?> </div> <?php endif; ?> <div class="p-2"> <input wire:model.debounce.100ms="search" type="search" class=" form-control" placeholder="<?php echo e(__('messages.common.search')); ?>" id="search"> </div> </div> <div class="col-md-12"> <div wire:loading id="live-wire-screen-lock"> <div class="live-wire-infy-loader"> <?php echo $__env->make('loader', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> </div> </div> </div> <div class="col-md-12"> <div class="row justify-content-md-center text-center mb-4"> <div class="owl-carousel owl-theme"> <div class="item"> <div class="ticket-statistics mx-auto bg-danger"> <p><?php echo e($statusCount['not_started']); ?></p> </div> <h5 class="my-0 mt-1"><?php echo e(__('messages.status.not_started')); ?></h5> </div> <div class="item"> <div class="ticket-statistics mx-auto bg-primary"> <p><?php echo e($statusCount['in_progress']); ?></p> </div> <h5 class="my-0 mt-1"><?php echo e(__('messages.status.in_progress')); ?></h5> </div> <div class="item"> <div class="ticket-statistics mx-auto bg-warning"> <p><?php echo e($statusCount['on_hold']); ?></p> </div> <h5 class="my-0 mt-1"><?php echo e(__('messages.status.on_hold')); ?></h5> </div> <div class="item"> <div class="ticket-statistics mx-auto bg-info"> <p><?php echo e($statusCount['cancelled']); ?></p> </div> <h5 class="my-0 mt-1"><?php echo e(__('messages.status.cancelled')); ?></h5> </div> <div class="item"> <div class="ticket-statistics mx-auto bg-success"> <p><?php echo e($statusCount['finished']); ?></p> </div> <h5 class="my-0 mt-1"><?php echo e(__('messages.status.finished')); ?></h5> </div> </div> </div> </div> <?php $__empty_1 = true; $__currentLoopData = $projects; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $project): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?> <div class="col-12 col-md-6 col-lg-6 col-xl-4 extra-large"> <div class="livewire-card card card-<?php echo e(\App\Models\Project::CARD_COLOR[$project->status]); ?> shadow mb-5 rounded project-card-height"> <div class="card-header d-flex justify-content-between align-items-center pt-2 pr-3 pb-3 pl-3"> <div class="d-flex"> <a href="<?php echo e(route('projects.show',[$project->id, ''])); ?>" class="text-decoration-none"> <h4 class="text-primary card-report-name"><?php echo e(Str::limit(html_entity_decode($project->project_name), 15, '...')); ?></h4> </a> </div> <a class="dropdown dropdown-list-toggle"> <a href="#" data-toggle="dropdown" class="notification-toggle action-dropdown d-none position-xs-bottom"> <i class="fas fa-ellipsis-v action-toggle-mr"></i> </a> <div class="dropdown-menu dropdown-menu-right"> <div class="dropdown-list-content dropdown-list-icons"> <?php if($project->status != \App\Models\Project::STATUS_CANCELLED): ?> <a href="<?php echo e(route('projects.edit',$project->id)); ?>" class="dropdown-item dropdown-item-desc edit-btn"> <i class="fas fa-edit mr-2 card-edit-icon"></i> <?php echo e(__('messages.common.edit')); ?> </a> <?php endif; ?> <a href="#" class="dropdown-item dropdown-item-desc delete-btn" data-id="<?php echo e($project->id); ?>"> <i class="fas fa-trash mr-2 card-delete-icon"></i> <?php echo e(__('messages.common.delete')); ?> </a> </div> </div> </a> </div> <div class="card-body pt-0 pl-3"> <div class="float-left"> <span class="projectStatistics" data-toggle="tooltip" title="<?php echo e(__('messages.project.billing_type')); ?>"> <?php echo e(\App\Models\Project::BILLING_TYPES[$project->billing_type]); ?> </span> </div> <div class="float-right project-card-status mt-1"> <span class="badge <?php echo e(\App\Models\Project::STATUS_BADGE[$project->status]); ?> text-uppercase projectStatus"><?php echo e(\App\Models\Project::STATUS[$project->status]); ?></span> </div> <br> <div class="float-left mt-2"> <span class="mr-1" data-toggle="tooltip" title="<?php echo e(__('messages.project.customer')); ?>"> <?php echo e(html_entity_decode($project->customer->company_name)); ?> </span> </div> </div> <div class="card-body d-flex justify-content-between align-items-center pt-0 pl-3 pb-2"> <div class="d-inline-block project-avatar-margin"> <?php $__currentLoopData = $project->members; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $counter => $member): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php if($counter < 5): ?> <a href="<?php echo e(url('admin/members/'.$member->user->id)); ?>"><img class="projectUserAvatar p-0 mb-1" src="<?php echo e($member->user->image_url); ?>" title="<?php echo e(html_entity_decode($member->user->full_name)); ?>"></a> <?php elseif($counter == (count($project->members) - 1)): ?> <span class="project_remaining_user"><b> + <?php echo e((count($project->members) - 5)); ?></b></span> <?php endif; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?> <div class="mt-0 mb-5 col-12 d-flex justify-content-center mb-5 rounded"> <div class="p-2"> <?php if(empty($search)): ?> <p class="text-dark"><?php echo e(__('messages.project.no_project_available').'.'); ?></p> <?php else: ?> <p class="text-dark"><?php echo e(__('messages.project.no_project_found').'.'); ?></p> <?php endif; ?> </div> </div> <?php endif; ?> <?php if($projects->count() > 0): ?> <div class="mt-0 mb-5 col-12"> <div class="row paginatorRow"> <div class="col-lg-2 col-md-6 col-sm-12 pt-2"> <span class="d-inline-flex"> <?php echo e(__('messages.common.showing')); ?> <span class="font-weight-bold ml-1 mr-1"><?php echo e($projects->firstItem()); ?></span> - <span class="font-weight-bold ml-1 mr-1"><?php echo e($projects->lastItem()); ?></span> <?php echo e(__('messages.common.of')); ?> <span class="font-weight-bold ml-1"><?php echo e($projects->total()); ?></span> </span> </div> <div class="col-lg-10 col-md-6 col-sm-12 d-flex justify-content-end"> <?php echo e($projects->links()); ?> </div> </div> </div> <?php endif; ?> </div> <?php /**PATH /home/id/crm.dev-unit.com/resources/views/livewire/projects.blade.php ENDPATH**/ ?>