*/ public function toArray(Request $request): array { return [ "id" => $this->id, "name" => $this->name, "email" => $this->email, "country_code" => $this->country_code, "phone" => $this->phone, "image" => $this->getFileFullUrl($this->image), "type" => $this->type, "email_verified_at" => $this->email_verified_at, "phone_verified_at" => $this->phone_verified_at, "status" => $this->status, "status_reason" => $this->status_reason, ]; } }