*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'feed_id' => $this->feed_id, 'platform_channel_id' => $this->platform_channel_id, 'is_active' => $this->is_active, 'priority' => $this->priority, 'created_at' => $this->created_at->toISOString(), 'updated_at' => $this->updated_at->toISOString(), 'feed' => new FeedResource($this->whenLoaded('feed')), 'platform_channel' => new PlatformChannelResource($this->whenLoaded('platformChannel')), ]; } }