मैं वर्तमान में नवीनतम लारवेल संस्करण का उपयोग कर रहा हूं।
मैंने निम्नलिखित प्रश्नों की कोशिश की है:
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');
}
}