I have got 2 joined tables in Eloquent namely themes and users.
theme model:
public function user() { return $this->belongs_to(
This Way:
Post::with(array('user'=>function($query){ $query->select('id','username'); }))->get();