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\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; 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 Teams extends Authenticatable { use HasApiTokens, Notifiable, HasFactory; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'password' ]; /** * Mutator for hashing the password on save * * @param string $value * @return void */ public function setPasswordAttribute($value) { $this->attributes['password'] = Hash::make($value); } /** * @param $query * @param $name * @return mixed */ public function scopeName($query, $name) { return $query->where('teams.team_name', 'LIKE', "%$name%", 'or'); } public function teamHistory() { return $this->hasMany(TeamHistory::class, 'team_id'); } }