What laravel says:
$books = App\\Book::with(\'author.contacts\')->get();
What I need is something like this
$books = App
You can do
$books = App\Book::with('author.contacts','author.publishers')->get();