Skip to main content

koel/koel

16836 stars
1 code files
View koel/koel on GitHub

app/Models/Artist.php

Open in GitHub
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasManyThrough;
 
class Artist extends Model
{
//
public function songs(): HasManyThrough
{
return $this->hasManyThrough(Song::class, Album::class);
}
//
}