ฉันกำลังใช้ Laravel เวอร์ชันล่าสุด
ฉันได้ลองใช้คำค้นหาต่อไปนี้:
Code::where('to_be_used_by_user_id', '<>' , 2)->get()
Code::whereNotIn('to_be_used_by_user_id', [2])->get()
Code::where('to_be_used_by_user_id', 'NOT IN', 2)->get()
ตามหลักการแล้วควรส่งคืนระเบียนทั้งหมดยกเว้นuser_id = 2
แต่จะส่งคืนอาร์เรย์ว่าง ฉันจะแก้ไขปัญหานี้ได้อย่างไร
Code::all()
สิ่งนี้ส่งคืนทั้ง 4 ระเบียน
รหัสรุ่น:
<?php namespace App;
use Illuminate\Database\Eloquent\Model;
class Code extends Model
{
protected $fillable = ['value', 'registration_id', 'generated_for_user_id', 'to_be_used_by_user_id', 'code_type_id', 'is_used'];
public function code_type()
{
return $this->belongsTo('App\CodeType');
}
}