mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-29 11:43:26 +01:00
35 lines
866 B
PHP
35 lines
866 B
PHP
<?php
|
|
|
|
namespace App\Api\v1\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
/**
|
|
* @property mixed $id
|
|
* @property string $name
|
|
* @property string $email
|
|
* @property string $oauth_provider
|
|
* @property \Illuminate\Support\Collection<array-key, mixed> $preferences
|
|
* @property string $is_admin
|
|
*/
|
|
class UserResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'name' => $this->name,
|
|
'email' => $this->email,
|
|
'oauth_provider' => $this->oauth_provider,
|
|
'preferences' => $this->preferences,
|
|
'is_admin' => $this->is_admin,
|
|
];
|
|
}
|
|
}
|