*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'name' => $this->name, 'external_id' => $this->external_id, 'protocol' => $this->protocol, 'status' => $this->live_status ?? $this->status, 'zone' => new ZoneResource($this->whenLoaded('zone')), 'device_type' => new DeviceTypeResource($this->whenLoaded('deviceType')), 'created_at' => $this->created_at, ]; } }