在我的应用程序中,用户可以拥有许多产品。现在,我正在尝试显示每个显示产品的用户电话号码。
在my products(我的产品)表中,有一列user\u id
,用于相应的用户<这就是我的模型的样子
用户模型
public function products()
{
return $this->belongsTo('Models\Database\User','user_id');
}
产品型号
类产品扩展BaseModel{
protected $fillable = ['user_id','type', 'name', 'slug', 'sku', 'description',
'status', 'in_stock', 'track_stock', 'qty', 'is_taxable', 'page_title', 'page_description'];
// protected $guarded = ['id'];
public static function getCollection()
{
$model = new static;
$products = $model->all();
$productCollection = new ProductCollection();
$productCollection->setCollection($products);
return $productCollection;
}
public function users()
{
return $this->hasMany('\Models\Database\Product');
//->withTimestamps();
}
public function categories()
{
return $this->belongsToMany(Category::class);
}
public function reviews()
{
return $this->hasMany(Review::class);
}
public function prices()
{
return $this->hasMany(ProductPrice::class);
}
public function orders()
{
return $this->hasMany(Order::class);
}
public function users()
{
return $this->hasMany('Models\Database\Product');
}
在我看来,这就是我试图获取相应用户的电话号码的方式
<p>{{$product->users->phone}}</p>
但我得到一个错误,比如
SQLSTATE[42S22]:未找到列:1054未知列“产品”。where子句中的product_id'(SQL:select*fromproducts
whereproduct_id
=1且products
product_id不为空)
你应该做:
用户模型
public function products()
{
return $this->hasMany('Models\Database\Product');
}
产品型号
public function user()
{
return $this->belongsTo('Models\Database\User');
}
在您的刀片中:
{{ $product->user->phone }}
你的关系模式颠倒了,
改变它们:
在用户模型中:
public function products()
{
return $this->hasMany('Models\Database\Product');
}
在您的产品模型中:
public function user()
{
return $this->belongsTo('Models\Database\User','user_id');
}
然后您可以访问以下属性:
<p>{{$product->user->phone}}</p>
链接到文档