Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sdgamatya /
app /
Model /
Order /
[ HOME SHELL ]
Name
Size
Permission
Action
Customer.php
315
B
-rw-r--r--
Customer_311.php
294
B
-rw-r--r--
Order.php
703
B
-rw-r--r--
OrderPayment.php
485
B
-rw-r--r--
OrderPaymentReceipt.php
241
B
-rw-r--r--
OrderReceipt.php
246
B
-rw-r--r--
Order_details.php
481
B
-rw-r--r--
Order_old.php
703
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Order_details.php
<?php namespace App\Model\Order; use App\Model\Product\Product; use Illuminate\Database\Eloquent\Model; class Order_details extends Model { protected $fillable = ['product_id','order_id','status','type','qty']; protected $table="order_details"; public $timestamps = false; public function order() { return $this->belongsTo(Order::class); } public function product() { return $this->belongsTo(Product::class,'product_id','id'); } }
Close