Laravel雄辩的模型查询`not null`

时间:2017-06-17 00:22:40

标签: php laravel eloquent

我一直在使用Laravel进行项目,并使用Eloquent模型来获取我需要的模型实例。

但是,查看not null值的方法看起来并不像。

https://laravel.com/docs/5.4/eloquent#retrieving-models

有没有办法做这样的事情,我希望获得Flightticket_id的所有not null模型?

$flight = App\Flight::where('ticket_id', '!=', null);

1 个答案:

答案 0 :(得分:17)

试试这个

$flight = App\Flight::whereNotNull('ticket_id')->get();