📜  当条件为真时,Laravel 在模型上返回空关系 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:19.443000             🧑  作者: Mango

代码示例1
public function shop(): BelongsTo
{
    if(true) {
        return new BelongsTo($this->newQuery(), $this, '', '', '');
    }
    return $this->belongsTo('App\Models\Shop');
}