belongsTo(Channel::class); } /** * Get the transcriptions for the video. */ public function transcriptions() { return $this->hasMany(Transcription::class); } /** * Get the clips for the video. */ public function clips() { return $this->hasMany(Clip::class); } }