where not null in laravel

37

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

Comments

Submit
0 Comments