Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
app /
Models /
Delete
Unzip
Name
Size
Permission
Date
Action
Address.php
258
B
-rwxrwxrwx
2022-04-21 13:43
BuildingFloors.php
281
B
-rwxrwxrwx
2022-04-21 13:43
BuildingTypes.php
184
B
-rwxrwxrwx
2022-04-21 13:43
Buildings.php
254
B
-rwxrwxrwx
2022-04-21 13:43
CarHistory.php
294
B
-rwxrwxrwx
2022-04-21 13:43
Cars.php
176
B
-rwxrwxrwx
2022-04-21 13:43
CheckIn.php
258
B
-rwxrwxrwx
2022-04-21 13:43
Clients.php
386
B
-rwxrwxrwx
2022-04-21 13:43
Devis.php
427
B
-rwxrwxrwx
2022-04-21 13:43
DevisLines.php
266
B
-rwxrwxrwx
2022-04-21 13:43
InterventionAddresses.php
268
B
-rwxrwxrwx
2022-04-21 13:43
InterventionBuildings.php
275
B
-rwxrwxrwx
2022-04-21 13:43
InterventionContacts.php
303
B
-rwxrwxrwx
2022-04-21 13:43
InterventionStatus.php
189
B
-rwxrwxrwx
2022-04-21 13:43
Interventions.php
908
B
-rwxrwxrwx
2022-04-21 13:43
Passes.php
177
B
-rwxrwxrwx
2022-04-21 13:43
Rules.php
340
B
-rwxrwxrwx
2022-04-21 13:43
Status.php
177
B
-rwxrwxrwx
2022-04-21 13:43
TeamHistory.php
298
B
-rwxrwxrwx
2022-04-21 13:43
TeamLogs.php
179
B
-rwxrwxrwx
2022-04-21 13:43
TeamMembers.php
182
B
-rwxrwxrwx
2022-04-21 13:43
Teams.php
1.21
KB
-rwxrwxrwx
2022-04-21 13:43
User.php
1.88
KB
-rwxrwxrwx
2022-04-21 13:43
Save
Rename
<?php namespace App\Models; use Illuminate\Database\Eloquent\Relations\HasMany; use Laravel\Passport\HasApiTokens; use Illuminate\Support\Facades\Hash; use Spatie\Permission\Traits\HasRoles; use Illuminate\Notifications\Notifiable; use App\Notifications\Auth\ResetPasswordNotification; use Illuminate\Foundation\Auth\User as Authenticatable; class User extends Authenticatable { use HasApiTokens, Notifiable; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'email', 'password' ]; /** * 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', ]; /** * Mutator for hashing the password on save * * @param string $value * @return void */ public function setPasswordAttribute($value) { $this->attributes['password'] = Hash::make($value); } /** * Send the password reset notification. * * @param string $token * @return void */ public function sendPasswordResetNotification($token) { $this->notify(new ResetPasswordNotification($token)); } /** * @param $query * @param $name * @return mixed */ public function scopeName($query, $name) { return $query->where('users.name', 'LIKE', "%$name%", 'or'); } /** * @param $query * @param $email * @return mixed */ public function scopeEmail($query, $email) { return $query->where('users.email', 'LIKE', "%$email%", 'or'); } public function rules() { return $this->hasOne(Rules::class, 'user_id'); } }