方法一: 使用Eloquent的where
where('id', '!=' , 2)
方法二: 使用Eloquent的whereNotIn
->whereNotIn( 'id', [2])
参考文献: