You can do Laravel Eager Loading and specify the exact columns you want to get from the relationship.
1$users = App\Book::with('author:id,name')->get();
You can do that even in deeper, second level relationships:
1$users = App\Book::with('author.country:id,name')->get();