belongsTo(Album::class); } public function playlists() { return $this->belongsToMany(Playlist::class); } /** * Sometimes the tags extracted from getID3 are HTML entity encoded. * This makes sure they are always sane. * * @param $value */ public function setTitleAttribute($value) { $this->attributes['title'] = html_entity_decode($value); } /** * Some songs don't have a title. * Fall back to the file name (without extension) for such. * * @param $value * * @return string */ public function getTitleAttribute($value) { return $value ?: pathinfo($this->path, PATHINFO_FILENAME); } /** * Prepare the lyrics for displaying. * * @param $value * * @return string */ public function getLyricsAttribute($value) { return nl2br($value); } }