belongsTo(Podcast::class); } public function artwork() { return $this->hasOne(Artwork::class); } public function artist() { return $this->hasOneThrough(Artist::class, Artwork::class); } }