koel/app/Http/Resources/UserResource.php

41 lines
918 B
PHP
Raw Normal View History

2022-06-10 10:47:46 +00:00
<?php
namespace App\Http\Resources;
use App\Models\User;
use Illuminate\Http\Resources\Json\JsonResource;
class UserResource extends JsonResource
{
public const JSON_STRUCTURE = [
'type',
'id',
'name',
'email',
'avatar',
'is_admin',
'preferences',
'is_prospect',
];
public function __construct(private User $user)
2022-06-10 10:47:46 +00:00
{
parent::__construct($user);
}
/** @return array<mixed> */
public function toArray($request): array
{
return [
'type' => 'users',
'id' => $this->user->id,
'name' => $this->user->name,
'email' => $this->user->email,
'avatar' => $this->user->avatar,
'is_admin' => $this->user->is_admin,
'preferences' => $this->user->preferences,
2023-08-20 22:35:58 +00:00
'is_prospect' => $this->user->is_prospect,
2022-06-10 10:47:46 +00:00
];
}
}