I have got 2 joined tables in Eloquent namely themes and users.
theme model:
public function user() { return $this->belongs_to(
This is how i do it
$posts = Post::with(['category' => function($query){ $query->select('id', 'name'); }])->get();
First answer by user2317976 did not work for me, i am using laravel 5.1