morphMany(Channel::class, 'channelables'); } /** * Get the user's most recent image. */ public function channel(): ?Channel { return $this->relationLoaded('channels') ? $this->channels->first() : $this->channels()->first(); } }