I have got 2 joined tables in Eloquent namely themes and users.
theme model:
public function user() { return $this->belongs_to(
I know, you ask for Eloquent but you can do it with Fluent Query Builder
$data = DB::table('themes') ->join('users', 'users.id', '=', 'themes.user_id') ->get(array('themes.*', 'users.username'));