'integer', 'podcast_id' => 'integer', 'data' => 'array', ]; public function podcast(): \Illuminate\Database\Eloquent\Relations\BelongsTo { return $this->belongsTo(Podcast::class); } public function libraryItem(): HasOne { return $this->hasOne(LibraryItem::class); } }