DB::table('users') ->whereNotNull('name') ->get();
DB::table('users') ->whereNull('name') ->get();
Model::whereNotNull('sent_at')