Files
ploi-core/app/Http/Resources/Api/UserResource.php
2022-07-01 12:00:16 +02:00

20 lines
410 B
PHP

<?php
namespace App\Http\Resources\Api;
use Illuminate\Http\Resources\Json\JsonResource;
class UserResource extends JsonResource
{
public function toArray($request): array
{
return [
'id' => $this->id,
'avatar' => $this->avatar,
'name' => $this->name,
'email' => $this->email,
'created_at' => $this->created_at,
];
}
}