How do you check “if not null” with Eloquent? Technology Community › Category: Laravel › How do you check “if not null” with Eloquent? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Eloquent has a method for that (Laravel 4.*/5.*); Model::whereNotNull('sent_at') Laravel 3: Model::where_not_null('sent_at')