Eloquentでフィールドがnullでないかどうかをどのように確認しますか?
試しましたModel::where('sent_at', 'IS NOT', DB::raw('null'))->...
がIS NOT
、比較ではなくバインディングとして表示されます。
これはそれについてDB::getQueryLog()
言っていることです:
'query' => string 'select * from my_table where sent_at = ? and profile_id in (?, ?) order by created_at desc' (length=101)
'bindings' =>
array (size=3)
0 => string 'IS NOT' (length=6)
1 => int 1
2 => int 4
!=
IS NOTの代わりに使用してみることができます。