!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smabpro.picotech.app/public_html/resources/views/tasks/   drwxr-xr-x
Free 29.21 GB of 117.98 GB (24.76%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     list.blade.php (5.43 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<div class="col-12">
    <div class="card">
        <div class="table-responsive">
            <table class="table align-items-center">
                <thead>
                <tr>
                    <th scope="col">{{__('Name')}}</th>
                    <th scope="col">{{__('Stage')}}</th>
                    <th scope="col">{{__('Priority')}}</th>
                    <th scope="col">{{__('End Date')}}</th>
                    <th scope="col">{{__('Assigned To')}}</th>
                    <th scope="col">{{__('Completion')}}</th>
                    <th scope="col"></th>
                </tr>
                </thead>
                <tbody class="list">
                @if(count($tasks) > 0)
                    @foreach($tasks as $task)
                        <tr>
                            <td>
                                <span class="h6 text-sm font-weight-bold mb-0"><a href="{{ route('projects.tasks.index',$task->project->id) }}">{{ $task->name }}</a></span>
                                <span class="d-block text-sm text-muted">{{ $task->project->name }}
                                    <span class="badge badge-xs badge-{{ (\Auth::user()->checkProject($task->project_id) == 'Owner') ? 'success' : 'warning'  }}">{{ __(\Auth::user()->checkProject($task->project_id)) }}</span>
                                </span>
                            </td>
                            <td>{{ $task->stage->name }}</td>
                            <td>
                                <span class="badge badge-pill badge-sm badge-{{__(\App\Models\ProjectTask::$priority_color[$task->priority])}}">{{ __(\App\Models\ProjectTask::$priority[$task->priority]) }}</span>
                            </td>
                            <td class="{{ (strtotime($task->end_date) < time()) ? 'text-danger' : '' }}">{{ Utility::getDateFormated($task->end_date) }}</td>
                            <td>
                                <div class="avatar-group">
                                    @if($task->users()->count() > 0)
                                        @if($users = $task->users())
                                            @foreach($users as $key => $user)
                                                @if($key<3)
                                                    <a href="#" class="avatar rounded-circle avatar-sm">
                                                        <img src="{{$user->getImgImageAttribute()}}" title="{{ $user->name }}">
                                                    </a>
                                                @else
                                                    @break
                                                @endif
                                            @endforeach
                                        @endif
                                        @if(count($users) > 3)
                                            <a href="#" class="avatar rounded-circle avatar-sm">
                                                <img src="{{$user->getImgImageAttribute()}}">
                                            </a>
                                        @endif
                                    @else
                                        {{ __('-') }}
                                    @endif
                                </div>
                            </td>
                            <td>
                                <div class="d-flex align-items-center">
                                    <span class="completion mr-2">{{ $task->taskProgress($task)['percentage'] }}</span>
                                    <div>
                                        <div class="progress" style="width: 100px;">
                                            <div class="progress-bar bg-{{ $task->taskProgress($task)['color'] }}" role="progressbar" aria-valuenow="{{ $task->taskProgress($task)['percentage'] }}" aria-valuemin="0" aria-valuemax="100" style="width: {{ $task->taskProgress($task)['percentage'] }};"></div>
                                        </div>
                                    </div>
                                </div>
                            </td>
                            <td class="text-end w-15">
                                <div class="actions">
                                    <a class="action-item px-1" data-toggle="tooltip" data-original-title="{{__('Attachment')}}">
                                        <i class="ti ti-paperclip mr-2"></i>{{ count($task->taskFiles) }}
                                    </a>
                                    <a class="action-item px-1" data-toggle="tooltip" data-original-title="{{__('Comment')}}">
                                        <i class="ti ti-brand-hipchart mr-2"></i>{{ count($task->comments) }}
                                    </a>
                                    <a class="action-item px-1" data-toggle="tooltip" data-original-title="{{__('Checklist')}}">
                                        <i class="ti ti-tasks mr-2"></i>{{ $task->countTaskChecklist() }}
                                    </a>
                                </div>
                            </td>
                        </tr>
                    @endforeach
                @else
                    <tr>
                        <th scope="col" colspan="7"><h6 class="text-center">{{__('No tasks found')}}</h6></th>
                    </tr>
                @endif
                </tbody>
            </table>
        </div>
    </div>
</div>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0045 ]--