I have two tables, User and Post. One User can have many posts and one post belongs to only one user>
User
Post
posts
post
user>
In Laravel 5.7 you can call specific field like this
$users = App\Book::with('author:id,name')->get();
It is important to add foreign_key field in the selection.
foreign_key