*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'zone' => new ZoneResource($this->whenLoaded('zone')), 'target_device' => new DeviceResource($this->whenLoaded('targetDevice')), 'condition_source_device' => new DeviceResource($this->whenLoaded('conditionSourceDevice')), 'condition_sensor_type' => $this->condition_sensor_type, 'condition_operator' => $this->condition_operator->value, 'condition_value' => $this->condition_value, 'action_type' => $this->action_type, 'action_params' => $this->action_params, 'is_active' => $this->is_active, 'created_at' => $this->created_at, ]; } }