Larave WhereNotNull

[Solved] Larave WhereNotNull | Php - Code Explorer | yomemimo.com
Question : larave whereNotNull

Answered by : carlos-hernandez

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

Source : | Last Update : Tue, 23 Mar 21

Answers related to larave whereNotNull

Code Explorer Popular Question For Php