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