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 /
Http /
Requests /
Delete
Unzip
Name
Size
Permission
Date
Action
Api
[ DIR ]
drwxrwxrwx
2022-04-21 13:43
PasswordRequest.php
993
B
-rwxrwxrwx
2022-04-21 13:43
ProfileRequest.php
687
B
-rwxrwxrwx
2022-04-21 13:43
StoreAddressRequest.php
493
B
-rwxrwxrwx
2022-04-21 13:43
StoreBuildingFloorsRequest.php
500
B
-rwxrwxrwx
2022-04-21 13:43
StoreBuildingTypesRequest.php
499
B
-rwxrwxrwx
2022-04-21 13:43
StoreBuildingsRequest.php
495
B
-rwxrwxrwx
2022-04-21 13:43
StoreCarHistoryRequest.php
496
B
-rwxrwxrwx
2022-04-21 13:43
StoreCarsRequest.php
490
B
-rwxrwxrwx
2022-04-21 13:43
StoreCheckInRequest.php
493
B
-rwxrwxrwx
2022-04-21 13:43
StoreClientsRequest.php
493
B
-rwxrwxrwx
2022-04-21 13:43
StoreDevisLinesRequest.php
496
B
-rwxrwxrwx
2022-04-21 13:43
StoreDevisRequest.php
491
B
-rwxrwxrwx
2022-04-21 13:43
StoreInterventionAddressesRequest.php
507
B
-rwxrwxrwx
2022-04-21 13:43
StoreInterventionBuildingsRequest.php
507
B
-rwxrwxrwx
2022-04-21 13:43
StoreInterventionContactsRequest.php
506
B
-rwxrwxrwx
2022-04-21 13:43
StoreInterventionStatusRequest.php
504
B
-rwxrwxrwx
2022-04-21 13:43
StoreInterventionsRequest.php
499
B
-rwxrwxrwx
2022-04-21 13:43
StorePassesRequest.php
492
B
-rwxrwxrwx
2022-04-21 13:43
StoreRulesRequest.php
491
B
-rwxrwxrwx
2022-04-21 13:43
StoreStatusRequest.php
492
B
-rwxrwxrwx
2022-04-21 13:43
StoreTeamHistoryRequest.php
497
B
-rwxrwxrwx
2022-04-21 13:43
StoreTeamLogsRequest.php
494
B
-rwxrwxrwx
2022-04-21 13:43
StoreTeamMembersRequest.php
497
B
-rwxrwxrwx
2022-04-21 13:43
StoreTeamsRequest.php
491
B
-rwxrwxrwx
2022-04-21 13:43
UpdateAddressRequest.php
494
B
-rwxrwxrwx
2022-04-21 13:43
UpdateBuildingFloorsRequest.php
501
B
-rwxrwxrwx
2022-04-21 13:43
UpdateBuildingTypesRequest.php
500
B
-rwxrwxrwx
2022-04-21 13:43
UpdateBuildingsRequest.php
496
B
-rwxrwxrwx
2022-04-21 13:43
UpdateCarHistoryRequest.php
497
B
-rwxrwxrwx
2022-04-21 13:43
UpdateCarsRequest.php
491
B
-rwxrwxrwx
2022-04-21 13:43
UpdateCheckInRequest.php
494
B
-rwxrwxrwx
2022-04-21 13:43
UpdateClientsRequest.php
494
B
-rwxrwxrwx
2022-04-21 13:43
UpdateDevisLinesRequest.php
497
B
-rwxrwxrwx
2022-04-21 13:43
UpdateDevisRequest.php
492
B
-rwxrwxrwx
2022-04-21 13:43
UpdateInterventionAddressesRequest.php
508
B
-rwxrwxrwx
2022-04-21 13:43
UpdateInterventionBuildingsRequest.php
508
B
-rwxrwxrwx
2022-04-21 13:43
UpdateInterventionContactsRequest.php
507
B
-rwxrwxrwx
2022-04-21 13:43
UpdateInterventionStatusRequest.php
505
B
-rwxrwxrwx
2022-04-21 13:43
UpdateInterventionsRequest.php
500
B
-rwxrwxrwx
2022-04-21 13:43
UpdatePassesRequest.php
493
B
-rwxrwxrwx
2022-04-21 13:43
UpdateRulesRequest.php
492
B
-rwxrwxrwx
2022-04-21 13:43
UpdateStatusRequest.php
493
B
-rwxrwxrwx
2022-04-21 13:43
UpdateTeamHistoryRequest.php
498
B
-rwxrwxrwx
2022-04-21 13:43
UpdateTeamLogsRequest.php
495
B
-rwxrwxrwx
2022-04-21 13:43
UpdateTeamMembersRequest.php
498
B
-rwxrwxrwx
2022-04-21 13:43
UpdateTeamsRequest.php
492
B
-rwxrwxrwx
2022-04-21 13:43
UserRequest.php
891
B
-rwxrwxrwx
2022-04-21 13:43
Save
Rename
<?php namespace App\Http\Requests; use App\Models\User; use Illuminate\Validation\Rule; use Illuminate\Foundation\Http\FormRequest; class UserRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return auth()->check(); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'name' => [ 'required', 'min:3' ], 'email' => [ 'required', 'email', Rule::unique((new User)->getTable())->ignore($this->route()->user->id ?? null) ], 'password' => [ $this->route()->user ? 'nullable' : 'required', 'confirmed', 'min:6' ] ]; } }