*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'name' => $this->name, 'code' => $this->code, 'description' => $this->description, 'status' => 'doing', 'created_by' => $this->created_by, 'owner' => $this->owner, 'address' => $this->address, 'group_id' => $this->group_id, 'geo_address_code' => $this->geo_address_code, 'acl' => $this->acl, 'whitelist' => $this->whitelist, 'latitude' => $this->latitude, 'longitude' => $this->longitude, ]; } }