現在、最新の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');
}
}