icon
【Eloquent】is not Null が使えない…

参考

結論のみ

Laravel Eloquentだと、「is not Null」は使えないことが判明

NG

Model::query()->where( 'column' , 'is not', null )->get(); 

OK

Model::query()->whereNotNull( 'column' )->get();