第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

當(dāng)我嘗試按關(guān)系過濾時出現(xiàn)錯誤問題

當(dāng)我嘗試按關(guān)系過濾時出現(xiàn)錯誤問題

PHP
交互式愛情 2023-08-06 10:48:15
我是 Laravel 的初學(xué)者。我做了一個功能來顯示帶有過濾器的產(chǎn)品列表。我的代碼有一個小問題我有這個代碼:class Product extends Model{    use ScopeActiveTrait;    use Slugable;    public function setNameAttribute($value)    {        $this->attributes['name'] = $value;        $this->attributes['slug'] = $this->makeSlug($value);    }    protected $fillable = ['delivery_time', 'product_type', 'name', 'title', 'description', 'keywords', 'content', 'vat_id', 'main_category_id', 'enable', 'slug', 'small_description'];    protected $quarded = ['id'];    public $timestamps = false;    public function vat()    {        return $this->belongsTo('App\Models\VAT', 'vat_id');    }    public function category()    {        return $this->belongsTo('App\Models\Category', 'main_category_id');    }    public function selectedCategory()    {        return $this->hasMany('App\Models\SelectedProductCategory', 'product_id', 'id');    }    public function related()    {        return $this->belongsTo('App\Models\RelatedProduct');    }    public function features()    {        return $this->hasMany('App\Models\SelectedProductFeature');    }    public function frontImage()    {        return $this->hasMany('App\Models\UploadImage', 'file_id', 'id')->orderBy('order', 'ASC')->where('file_type', 'products');    }}
查看完整描述

1 回答

?
慕森王

TA貢獻(xiàn)1777條經(jīng)驗(yàn) 獲得超3個贊

在這種情況下,您將無法將額外的參數(shù)傳遞給匿名函數(shù)- 因此$filterDrawer會出現(xiàn)null錯誤。試試這個:


$query->whereHas('features', function ($query) use ($filterDrawer) {

    // code

});


查看完整回答
反對 回復(fù) 2023-08-06
  • 1 回答
  • 0 關(guān)注
  • 132 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號