You would have a belongsToMany relationship between Book and Publisher using the books_publishers pivot table. You have used a non-conventional name for the Pivot table, so you will need to specify this inside the relationship definition.
// Book
public function publishers
{
return $this->belongsToMany(Publisher::class, 'books_publishers');
}
Then you can eager-load the publishers when you are querying for books: