$users = DB::table('users') ->whereNull('email') ->get();This will return a Collection of User models that meet the specified condition. Package Library: The php illuminate.database.eloquent Builder class is part of the Laravel framework's Eloquent ORM library. Eloquent is a package library that provides an elegant and intuitive way to interact with databases.