Joins: Left Join Clause

$users = DB::table('users')
            ->leftJoin('posts', 'users.id', '=', 'posts.user_id')
            ->get();

Joins: Left Join Clause — Structure map

Clickable & Draggable!

Joins: Left Join Clause — Related pages: