*/ public function toArray(Request $request): array { return [ /** @var string $id ID */ 'id' => $this->resource->id, /** @var string $name Name */ 'name' => $this->resource->name, /** @var bool $color Personal organizations automatically created after registration */ 'is_personal' => $this->resource->personal_team, /** @var int|null $billable_rate Billable rate in cents per hour */ 'billable_rate' => $this->resource->billable_rate, ]; } }