-
app/Models/Artist.php
Open in GitHubuse 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); } // }