belongsToMany('App\Song'); } public function getM3uAttribute() { $output = "#EXTM3U\n"; foreach($this->songs as $song) { if ($song->audio){ $output .= config('app.url') . $song->audio . "\n"; } } return $output; } }