2FAuth/app/Api/v1/Resources/UserResource.php

29 lines
626 B
PHP
Raw Normal View History

<?php
namespace App\Api\v1\Resources;
use Illuminate\Http\Resources\Json\JsonResource;
/**
* @property mixed $id
* @property string $name
* @property string $email
*/
class UserResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function toArray($request)
{
return [
2022-11-22 15:15:52 +01:00
'id' => $this->when(! is_null($request->user()), $this->id),
'name' => $this->name,
2022-11-22 15:15:52 +01:00
'email' => $this->when(! is_null($request->user()), $this->email),
];
}
2022-11-22 15:15:52 +01:00
}