how to check if a field is not null by where condition in laravel code example
Example 1: laravel query not null
DB::table('users') ->whereNotNull('name') ->get();
Example 2: check if value is not null in db laravel
Model::whereNotNull('sent_at')