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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/main_file/app/Http/Controllers/   drwxrwxr-x
Free 13.01 GB of 57.97 GB (22.44%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     DashboardController.php (28.01 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace App\Http\Controllers;

use 
App\Models\AccountList;
use 
App\Models\Announcement;
use 
App\Models\AttendanceEmployee;
use 
App\Models\BalanceSheet;
use 
App\Models\BankAccount;
use 
App\Models\Bill;
use 
App\Models\Bug;
use 
App\Models\BugStatus;
use 
App\Models\DealTask;
use 
App\Models\Employee;
use 
App\Models\Event;
use 
App\Models\Expense;
use 
App\Models\Goal;
use 
App\Models\Invoice;
use 
App\Models\Job;
use 
App\Models\LandingPageSection;
use 
App\Models\Meeting;
use 
App\Models\Order;
use 
App\Models\Payees;
use 
App\Models\Payer;
use 
App\Models\Payment;
use 
App\Models\Plan;
use 
App\Models\ProductServiceCategory;
use 
App\Models\ProductServiceUnit;
use 
App\Models\Project;
use 
App\Models\ProjectTask;
use 
App\Models\Revenue;
use 
App\Models\Tax;
use 
App\Models\Ticket;
use 
App\Models\Timesheet;
use 
App\Models\TimeTracker;
use 
App\Models\Trainer;
use 
App\Models\Training;
use 
App\Models\User;
use 
App\Models\Utility;
use 
Illuminate\Http\Request;
use 
Illuminate\Support\Facades\Auth;
use 
Illuminate\Support\Facades\Validator;

class 
DashboardController extends Controller
{
    
/**
     * Create a new controller instance.
     *
     * @return void
     */
    
public function __construct()
    {
    }

    
/**
     * Show the application dashboard.
     *
     * @return \Illuminate\Contracts\Support\Renderable
     */
    
public function account_dashboard_index()
    {

        if(
Auth::check())
        {
            if(
Auth::user()->type == 'super admin')
            {
                return 
redirect()->route('client.dashboard.view');
            }
            elseif(
Auth::user()->type == 'client')
            {
                return 
redirect()->route('client.dashboard.view');
            }
            else
            {
                if(
\Auth::user()->can('show account dashboard'))
                {
                
$data['latestIncome']  = Revenue::where('created_by''='\Auth::user()->creatorId())->orderBy('id''desc')->limit(5)->get();
                
$data['latestExpense'] = Payment::where('created_by''='\Auth::user()->creatorId())->orderBy('id''desc')->limit(5)->get();
                
$currentYer           date('Y');


                
$incomeCategory ProductServiceCategory::where('created_by''='\Auth::user()->creatorId())->where('type''='1)->get();
                
$inColor        = array();
                
$inCategory     = array();
                
$inAmount       = array();
                for(
$i 0$i count($incomeCategory); $i++)
                {
                    
$inColor[]    = '#' $incomeCategory[$i]->color;
                    
$inCategory[] = $incomeCategory[$i]->name;
                    
$inAmount[]   = $incomeCategory[$i]->incomeCategoryRevenueAmount();
                }


                
$data['incomeCategoryColor'] = $inColor;
                
$data['incomeCategory']      = $inCategory;
                
$data['incomeCatAmount']     = $inAmount;


                
$expenseCategory ProductServiceCategory::where('created_by''='\Auth::user()->creatorId())->where('type''='2)->get();
                
$exColor         = array();
                
$exCategory      = array();
                
$exAmount        = array();
                for(
$i 0$i count($expenseCategory); $i++)
                {
                    
$exColor[]    = '#' $expenseCategory[$i]->color;
                    
$exCategory[] = $expenseCategory[$i]->name;
                    
$exAmount[]   = $expenseCategory[$i]->expenseCategoryAmount();
                }

                
$data['expenseCategoryColor'] = $exColor;
                
$data['expenseCategory']      = $exCategory;
                
$data['expenseCatAmount']     = $exAmount;

                
$data['incExpBarChartData']  = \Auth::user()->getincExpBarChartData();
                
$data['incExpLineChartData'] = \Auth::user()->getIncExpLineChartDate();

                
$data['currentYear']  = date('Y');
                
$data['currentMonth'] = date('M');

                
$constant['taxes']         = Tax::where('created_by'\Auth::user()->creatorId())->count();
                
$constant['category']      = ProductServiceCategory::where('created_by'\Auth::user()->creatorId())->count();
                
$constant['units']         = ProductServiceUnit::where('created_by'\Auth::user()->creatorId())->count();
                
$constant['bankAccount']   = BankAccount::where('created_by'\Auth::user()->creatorId())->count();
                
$data['constant']          = $constant;
                
$data['bankAccountDetail'] = BankAccount::where('created_by''='\Auth::user()->creatorId())->get();
                
$data['recentInvoice']     = Invoice::where('created_by''='\Auth::user()->creatorId())->orderBy('id''desc')->limit(5)->get();
                
$data['weeklyInvoice']     = \Auth::user()->weeklyInvoice();
                
$data['monthlyInvoice']    = \Auth::user()->monthlyInvoice();
                
$data['recentBill']        = Bill::where('created_by''='\Auth::user()->creatorId())->orderBy('id''desc')->limit(5)->get();
                
$data['weeklyBill']        = \Auth::user()->weeklyBill();
                
$data['monthlyBill']       = \Auth::user()->monthlyBill();
                
$data['goals']             = Goal::where('created_by''='\Auth::user()->creatorId())->where('is_display'1)->get();

                    return 
view('dashboard.account-dashboard'$data);
                }
                else
                {

                  return 
$this->hrm_dashboard_index();
                }


            }
        }
        else
        {
            if(!
file_exists(storage_path() . "/installed"))
            {
                
header('location:install');
                die;
            }
            else
            {
                
$settings Utility::settings();
                if(
$settings['display_landing_page'] == 'on')
                {


                    return 
view('layouts.landing'compact('settings'));
                }
                else
                {
                    return 
redirect('login');
                }

            }
        }
    }

    public function 
project_dashboard_index()
    {
        
$user Auth::user();
        if(
\Auth::user()->can('show project dashboard'))
        {
            if(
$user->type == 'admin')
            {
                return 
view('admin.dashboard');
            }
            else
            {
                
$home_data = [];

                
$user_projects   $user->projects()->pluck('project_id')->toArray();
                
$project_tasks   ProjectTask::whereIn('project_id'$user_projects)->get();
                
$project_expense Expense::whereIn('project_id'$user_projects)->get();
                
$seven_days      Utility::getLastSevenDays();

                
// Total Projects
                
$complete_project           $user->projects()->where('status''LIKE''complete')->count();
                
$home_data['total_project'] = [
                    
'total' => count($user_projects),
                    
'percentage' => Utility::getPercentage($complete_projectcount($user_projects)),
                ];

                
// Total Tasks
                
$complete_task           ProjectTask::where('is_complete''='1)->whereRaw("find_in_set('" $user->id "',assign_to)")->whereIn('project_id'$user_projects)->count();
                
$home_data['total_task'] = [
                    
'total' => $project_tasks->count(),
                    
'percentage' => Utility::getPercentage($complete_task$project_tasks->count()),
                ];

                
// Total Expense
                
$total_expense        0;
                
$total_project_amount 0;
                foreach(
$user->projects as $pr)
                {
                    
$total_project_amount += $pr->budget;
                }
                foreach(
$project_expense as $expense)
                {
                    
$total_expense += $expense->amount;
                }
                
$home_data['total_expense'] = [
                    
'total' => $project_expense->count(),
                    
'percentage' => Utility::getPercentage($total_expense$total_project_amount),
                ];

                
// Total Users
                
$home_data['total_user'] = Auth::user()->contacts->count();

                
// Tasks Overview Chart & Timesheet Log Chart
                
$task_overview    = [];
                
$timesheet_logged = [];
                foreach(
$seven_days as $date => $day)
                {
                    
// Task
                    
$task_overview[$day] = ProjectTask::where('is_complete''='1)->where('marked_at''LIKE'$date)->whereIn('project_id'$user_projects)->count();

                    
// Timesheet
                    
$time                   Timesheet::whereIn('project_id'$user_projects)->where('date''LIKE'$date)->pluck('time')->toArray();
                    
$timesheet_logged[$day] = str_replace(':''.'Utility::calculateTimesheetHours($time));
                }

                
$home_data['task_overview']    = $task_overview;
                
$home_data['timesheet_logged'] = $timesheet_logged;

                
// Project Status
                
$total_project  count($user_projects);
                
$project_status = [];
                foreach(
Project::$project_status as $k => $v)
                {
                    
$project_status[$k]['total']      = $user->projects->where('status''LIKE'$k)->count();
                    
$project_status[$k]['percentage'] = Utility::getPercentage($project_status[$k]['total'], $total_project);
                }
                
$home_data['project_status'] = $project_status;

                
// Top Due Project
                
$home_data['due_project'] = $user->projects()->orderBy('end_date''DESC')->limit(5)->get();

                
// Top Due Tasks
                
$home_data['due_tasks'] = ProjectTask::where('is_complete''='0)->whereIn('project_id'$user_projects)->orderBy('end_date''DESC')->limit(5)->get();

                
$home_data['last_tasks'] = ProjectTask::whereIn('project_id'$user_projects)->orderBy('end_date''DESC')->limit(5)->get();

                return 
view('dashboard.project-dashboard'compact('home_data'));
            }
        }
        else
        {
            return 
$this->account_dashboard_index();
        }
    }

    public function 
hrm_dashboard_index()
    {

        if(
Auth::check())
        {

            if(
\Auth::user()->can('show hrm dashboard'))
            {

                
$user Auth::user();

                if(
$user->type != 'client' && $user->type != 'company')
                {
                    
$emp Employee::where('user_id''='$user->id)->first();

                    
$announcements Announcement::orderBy('announcements.id''desc')->take(5)->leftjoin('announcement_employees''announcements.id''=''announcement_employees.announcement_id')->where('announcement_employees.employee_id''='$emp->id)->orWhere(function ($q){
                        
$q->where('announcements.department_id''["0"]')->where('announcements.employee_id''["0"]');
                    })->
get();

                    
$employees Employee::get();
                    
$meetings  Meeting::orderBy('meetings.id''desc')->take(5)->leftjoin('meeting_employees''meetings.id''=''meeting_employees.meeting_id')->where('meeting_employees.employee_id''='$emp->id)->orWhere(function ($q){
                        
$q->where('meetings.department_id''["0"]')->where('meetings.employee_id''["0"]');
                    })->
get();
                    
$events    Event::leftjoin('event_employees''events.id''=''event_employees.event_id')->where('event_employees.employee_id''='$emp->id)->orWhere(function ($q){
                        
$q->where('events.department_id''["0"]')->where('events.employee_id''["0"]');
                    })->
get();

                    
$arrEvents = [];
                    foreach(
$events as $event)
                    {

                        
$arr['id']              = $event['id'];
                        
$arr['title']           = $event['title'];
                        
$arr['start']           = $event['start_date'];
                        
$arr['end']             = $event['end_date'];
                        
$arr['backgroundColor'] = $event['color'];
                        
$arr['borderColor']     = "#fff";
                        
$arr['textColor']       = "white";
                        
$arrEvents[]            = $arr;
                    }

                    
$date               date("Y-m-d");
                    
$time               date("H:i:s");
                    
$employeeAttendance AttendanceEmployee::orderBy('id''desc')->where('employee_id''=', !empty(\Auth::user()->employee) ? \Auth::user()->employee->id 0)->where('date''='$date)->first();

                    
$officeTime['startTime'] = Utility::getValByName('company_start_time');
                    
$officeTime['endTime']   = Utility::getValByName('company_end_time');

                    return 
view('dashboard.dashboard'compact('arrEvents''announcements''employees''meetings''employeeAttendance''officeTime'));
                }
                else if(
$user->type == 'super admin')
                {
                    
$user                       \Auth::user();
                    
$user['total_user']         = $user->countCompany();
                    
$user['total_paid_user']    = $user->countPaidCompany();
                    
$user['total_orders']       = Order::total_orders();
                    
$user['total_orders_price'] = Order::total_orders_price();
                    
$user['total_plan']         = Plan::total_plan();
                    
$user['most_purchese_plan'] = (!empty(Plan::most_purchese_plan()) ? Plan::most_purchese_plan()->name '');

                    
$chartData $this->getOrderChart(['duration' => 'week']);

                    return 
view('dashboard.super_admin'compact('user''chartData'));
                }
                else
                {
                    
$events    Event::where('created_by''='\Auth::user()->creatorId())->get();
                    
$arrEvents = [];

                    foreach(
$events as $event)
                    {
                        
$arr['id']    = $event['id'];
                        
$arr['title'] = $event['title'];
                        
$arr['start'] = $event['start_date'];
                        
$arr['end']   = $event['end_date'];

                        
$arr['backgroundColor'] = $event['color'];
                        
$arr['borderColor']     = "#fff";
                        
$arr['textColor']       = "white";
                        
$arr['url']             = route('event.edit'$event['id']);

                        
$arrEvents[] = $arr;
                    }


                    
$announcements Announcement::orderBy('announcements.id''desc')->take(5)->where('created_by''='\Auth::user()->creatorId())->get();


                    
$emp           User::where('type''!=''client')->where('type''!=''company')->where('created_by''='\Auth::user()->creatorId())->get();
                    
$countEmployee count($emp);

                    
$user      User::where('type''!=''client')->where('type''!=''company')->where('created_by''='\Auth::user()->creatorId())->get();
                    
$countUser count($user);


                    
$countTrainer    Trainer::where('created_by''='\Auth::user()->creatorId())->count();
                    
$onGoingTraining Training::where('status''='1)->where('created_by''='\Auth::user()->creatorId())->count();
                    
$doneTraining    Training::where('status''='2)->where('created_by''='\Auth::user()->creatorId())->count();

                    
$currentDate date('Y-m-d');

                    
$employees   User::where('type''=''client')->where('created_by''='\Auth::user()->creatorId())->get();
                    
$countClient count($employees);
                    
$notClockIn  AttendanceEmployee::where('date''='$currentDate)->get()->pluck('employee_id');

                    
$notClockIns Employee::where('created_by''='\Auth::user()->creatorId())->whereNotIn('id'$notClockIn)->get();
                    
$activeJob   Job::where('status''active')->where('created_by''='\Auth::user()->creatorId())->count();
                    
$inActiveJOb Job::where('status''in_active')->where('created_by''='\Auth::user()->creatorId())->count();


                    
$meetings Meeting::where('created_by''='\Auth::user()->creatorId())->limit(5)->get();

                    return 
view('dashboard.dashboard'compact('arrEvents''onGoingTraining''activeJob''inActiveJOb''doneTraining''announcements''employees''meetings''countTrainer''countClient''countUser''notClockIns''countEmployee'));
                }
            }
            else
            {
                return 
$this->project_dashboard_index();
            }
        }
        else
        {
            if(!
file_exists(storage_path() . "/installed"))
            {
                
header('location:install');
                die;
            }
            else
            {
                
$settings Utility::settings();
                if(
$settings['display_landing_page'] == 'on')
                {
                    
$plans Plan::get();

                    return 
view('layouts.landing'compact('plans'));
                }
                else
                {
                    return 
redirect('login');
                }

            }
        }
    }

    
// Load Dashboard user's using ajax
    
public function filterView(Request $request)
    {
        
$usr   Auth::user();
        
$users User::where('id''!='$usr->id);

        if(
$request->ajax())
        {
            if(!empty(
$request->keyword))
            {
                
$users->where('name''LIKE'$request->keyword '%')->orWhereRaw('FIND_IN_SET("' $request->keyword '",skills)');
            }

            
$users      $users->get();
            
$returnHTML view('dashboard.view'compact('users'))->render();

            return 
response()->json([
                                        
'success' => true,
                                        
'html' => $returnHTML,
                                    ]);
        }
    }

    public function 
clientView()
    {

        if(
Auth::check())
        {
            if(
Auth::user()->type == 'super admin')
            {
                
$user                       \Auth::user();
                
$user['total_user']         = $user->countCompany();
                
$user['total_paid_user']    = $user->countPaidCompany();
                
$user['total_orders']       = Order::total_orders();
                
$user['total_orders_price'] = Order::total_orders_price();
                
$user['total_plan']         = Plan::total_plan();
                
$user['most_purchese_plan'] = (!empty(Plan::most_purchese_plan()) ? Plan::most_purchese_plan()->total 0);
                
$chartData                  $this->getOrderChart(['duration' => 'week']);

                return 
view('dashboard.super_admin'compact('user''chartData'));

            }
            elseif(
Auth::user()->type == 'client')
            {
                
$transdate   date('Y-m-d'time());
                
$currentYear date('Y');

                
$calenderTasks = [];
                
$chartData     = [];
                
$arrCount      = [];
                
$arrErr        = [];
                
$m             date("m");
                
$de            date("d");
                
$y             date("Y");
                
$format        'Y-m-d';
                
$user          \Auth::user();
                if(
\Auth::user()->can('View Task'))
                {
                    
$company_setting Utility::settings();
                }
                
$arrTemp = [];
                for(
$i 0$i <= 1$i++)
                {
                    
$date                 date($formatmktime(000$m, ($de $i), $y));
                    
$arrTemp['date'][]    = __(date('D'strtotime($date)));
                    
$arrTemp['invoice'][] = 10;
                    
$arrTemp['payment'][] = 20;
                }

                
$chartData $arrTemp;

                foreach(
$user->clientDeals as $deal)
                {
                    foreach(
$deal->tasks as $task)
                    {
                        
$calenderTasks[] = [
                            
'title' => $task->name,
                            
'start' => $task->date,
                            
'url' => route('deals.tasks.show', [
                                
$deal->id,
                                
$task->id,
                            ]),
                            
'className' => ($task->status) ? 'bg-success border-success' 'bg-warning border-warning',
                        ];
                    }

                    
$calenderTasks[] = [
                        
'title' => $deal->name,
                        
'start' => $deal->created_at->format('Y-m-d'),
                        
'url' => route('deals.show', [$deal->id]),
                        
'className' => 'deal bg-primary border-primary',
                    ];
                }
                
$client_deal $user->clientDeals->pluck('id');

                
$arrCount['deal'] = $user->clientDeals->count();

                if(!empty(
$client_deal->first()))
                {

                    
$arrCount['task'] = DealTask::where('deal_id'$client_deal)->count();

                }
                else
                {
                    
$arrCount['task'] = 0;
                }


                
$project['projects']             = Project::where('client_id''='Auth::user()->id)->where('created_by'\Auth::user()->creatorId())->where('end_date''>'date('Y-m-d'))->limit(5)->orderBy('end_date')->get();
                
$project['projects_count']       = count($project['projects']);
                
$user_projects                   Project::where('client_id'\Auth::user()->id)->pluck('id''id')->toArray();
                
$tasks                           ProjectTask::whereIn('project_id'$user_projects)->where('created_by'\Auth::user()->creatorId())->get();
                
$project['projects_tasks_count'] = count($tasks);
                
$project['project_budget']       = Project::where('client_id'Auth::user()->id)->sum('budget');

                
$project_last_stages      Auth::user()->last_projectstage();
                
$project_last_stage       = (!empty($project_last_stages) ? $project_last_stages->id 0);
                
$project['total_project'] = Auth::user()->user_project();
                
$total_project_task       Auth::user()->created_total_project_task();
                
$allProject               Project::where('client_id'\Auth::user()->id)->where('created_by'\Auth::user()->creatorId())->get();
                
$allProjectCount          count($allProject);

                
$bugs                               Bug::whereIn('project_id'$user_projects)->where('created_by'\Auth::user()->creatorId())->get();
                
$project['projects_bugs_count']     = count($bugs);
                
$bug_last_stage                     BugStatus::orderBy('order''DESC')->first();
                
$completed_bugs                     Bug::whereIn('project_id'$user_projects)->where('status'$bug_last_stage->id)->where('created_by'\Auth::user()->creatorId())->get();
                
$allBugCount                        count($bugs);
                
$completedBugCount                  count($completed_bugs);
                
$project['project_bug_percentage']  = ($allBugCount != 0) ? intval(($completedBugCount $allBugCount) * 100) : 0;
                
$complete_task                      Auth::user()->project_complete_task($project_last_stage);
                
$completed_project                  Project::where('client_id'\Auth::user()->id)->where('status''complete')->where('created_by'\Auth::user()->creatorId())->get();
                
$completed_project_count            count($completed_project);
                
$project['project_percentage']      = ($allProjectCount != 0) ? intval(($completed_project_count $allProjectCount) * 100) : 0;
                
$project['project_task_percentage'] = ($total_project_task != 0) ? intval(($complete_task $total_project_task) * 100) : 0;
                
$invoice                            = [];
                
$top_due_invoice                    = [];
                
$invoice['total_invoice']           = 5;
                
$complete_invoice                   0;
                
$total_due_amount                   0;
                
$top_due_invoice                    = array();
                
$pay_amount                         0;

                if(
Auth::user()->type == 'client')
                {
                    if(!empty(
$project['project_budget']))
                    {
                        
$project['client_project_budget_due_per'] = intval(($pay_amount $project['project_budget']) * 100);
                    }
                    else
                    {
                        
$project['client_project_budget_due_per'] = 0;
                    }

                }

                
$top_tasks       Auth::user()->created_top_due_task();
                
$users['staff']  = User::where('created_by''='Auth::user()->creatorId())->count();
                
$users['user']   = User::where('created_by''='Auth::user()->creatorId())->where('type''!=''client')->count();
                
$users['client'] = User::where('created_by''='Auth::user()->creatorId())->where('type''=''client')->count();
                
$project_status  array_values(Project::$project_status);
                
$projectData     \App\Models\Project::getProjectStatus();

                
$taskData \App\Models\TaskStage::getChartData();

                return 
view('dashboard.clientView'compact('calenderTasks''arrErr''arrCount''chartData''project''invoice''top_tasks''top_due_invoice''users''project_status''projectData''taskData''transdate''currentYear'));
            }
        }
    }

    public function 
getOrderChart($arrParam)
    {
        
$arrDuration = [];
        if(
$arrParam['duration'])
        {
            if(
$arrParam['duration'] == 'week')
            {
                
$previous_week strtotime("-2 week +1 day");
                for(
$i 0$i 14$i++)
                {
                    
$arrDuration[date('Y-m-d'$previous_week)] = date('d-M'$previous_week);
                    
$previous_week                              strtotime(date('Y-m-d'$previous_week) . " +1 day");
                }
            }
        }

        
$arrTask          = [];
        
$arrTask['label'] = [];
        
$arrTask['data']  = [];
        foreach(
$arrDuration as $date => $label)
        {

            
$data               Order::select(\DB::raw('count(*) as total'))->whereDate('created_at''='$date)->first();
            
$arrTask['label'][] = $label;
            
$arrTask['data'][]  = $data->total;
        }

        return 
$arrTask;
    }

    public function 
stopTracker(Request $request)
    {
        if(
Auth::user()->isClient())
        {
            return 
Utility::error_res(__('Permission denied.'));
        }
        
$validatorArray = [
            
'name' => 'required|max:120',
            
'project_id' => 'required|integer',
        ];
        
$validator      Validator::make(
            
$request->all(), $validatorArray
        
);
        if(
$validator->fails())
        {
            return 
Utility::error_res($validator->errors()->first());
        }
        
$tracker TimeTracker::where('created_by''='Auth::user()->id)->where('is_active''='1)->first();
        if(
$tracker)
        {
            
$tracker->end_time   $request->has('end_time') ? $request->input('end_time') : date("Y-m-d H:i:s");
            
$tracker->is_active  0;
            
$tracker->total_time Utility::diffance_to_time($tracker->start_time$tracker->end_time);
            
$tracker->save();

            return 
Utility::success_res(__('Add Time successfully.'));
        }

        return 
Utility::error_res('Tracker not found.');
    }

}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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