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.253.147
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 : Applicant.php
<?php namespace App\Models; use App\Enums\ApplicantPhase; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Applicant extends Model { use HasFactory; protected $fillable = [ 'guarantor_name', 'guarantor_contact', 'guarantor_email', 'guarantor_fax', 'guarantor_dob', 'guarantor_website', 'guarantor_pager', 'guarantor_birth_place', 'guarantor_nationality', 'guarantor_passport_no', 'guarantor_gender', 'lettingswp', 'lettingpw_minimum', 'lettingpw_maximum', 'lettingpw_threshold', 'furniture', 'lha_dwp', 'tenancy_period', 'employment_status', 'employment_type', 'income', 'income_frequency', 'smoking', 'pets', 'occupiertype', 'sales_check', 'sales_minimum', 'sales_maximum', 'sales_threshold', 'mortgage', 'mortgage_status', 'lander', 'deposit_amount', 'able_dependant_on_sale', 'first_time_buyer', 'lease_expiry_date', 'nothing_to_sell', 'investor', 'additional_investment', 'underoffer', 'under_offer_price', 'chain', 'chain_note', 'property_to_sell', 'property_type', 'anticipated_sale_price', 'any_advice', 'property_to_market', 'property_markeat_type', 'how_long', 'price_on_market', 'interest', 'agent', 'contract_term', 'why_choose', 'buyertype', 'property_types', 'min_beds', 'max_beds', 'min_baths', 'max_baths', 'parking', 'min_space', 'max_space', 'min_land', 'max_land', 'build_year_start', 'build_year_end', 'special_feature', 'property_required_by', 'bym_status', 'notify_property_alerts', 'notify_general_news', 'notify_special_offers', 'notify_phone', 'notify_email', 'notify_sms', 'notify_post', 'solicitor', 'label', 'status', 'branch_id', 'negotiator_id', 'assigned_to', 'lead_source', 'comments', 'other_info', 'username', 'password', 'category_ids', 'property_types', 'area', 'phase', 'user_account_type', 'special_feature','lettingswpCheck' ]; protected $casts = [ 'phase' => ApplicantPhase::class, 'category_ids' => 'array', 'buyertype' => 'array', 'property_types' => 'array', ]; public function user() { return $this->hasOne(ApplicantUserDetail::class, 'applicant_id')->oldest(); } public function applicantUserDetails() { return $this->hasMany(ApplicantUserDetail::class, 'applicant_id'); } public function applicantFiles() { return $this->hasMany(ApplicantFile::class, 'applicant_id'); } public function label() { return $this->belongsTo(Label::class, 'label'); // 'label' is the foreign key column in applicants table } public function negotiator() { return $this->belongsTo(User::class, 'negotiator_id'); } public function branch() { return $this->belongsTo(Branch::class, 'branch_id'); } public function source() { return $this->belongsTo(Source::class, 'lead_source', 'slug'); } }
Close