Advanced Join Clauses: WhereNull / whereNotNull

$users = DB::table('users')
                    ->whereNull('updated_at')
                    ->get();
$users = DB::table('users')
                    ->whereNotNull('updated_at')
                    ->get();

Advanced Join Clauses: WhereNull / whereNotNull — Structure map

Clickable & Draggable!

Advanced Join Clauses: WhereNull / whereNotNull — Related pages: