mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-09 16:52:17 +01:00
39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Resources\V1\Member;
|
|
|
|
use App\Http\Resources\V1\BaseResource;
|
|
use App\Models\Member;
|
|
use Illuminate\Http\Request;
|
|
|
|
/**
|
|
* @property Member $resource
|
|
*/
|
|
class PersonalMembershipResource extends BaseResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @return array<string, string|bool|int|null|array<string>>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
/** @var string $id ID of membership */
|
|
'id' => $this->resource->id,
|
|
'organization' => [
|
|
/** @var string $id ID of organization */
|
|
'id' => $this->resource->organization->id,
|
|
/** @var string $name Name of organization */
|
|
'name' => $this->resource->organization->name,
|
|
/** @var string $currency Currency code (ISO 4217) of organization */
|
|
'currency' => $this->resource->organization->currency,
|
|
],
|
|
/** @var string $role Role */
|
|
'role' => $this->resource->role,
|
|
];
|
|
}
|
|
}
|