【发布时间】:2019-10-27 09:26:16
【问题描述】:
我想显示数据库中特定用户的所有喜欢的产品,但我收到错误Integrity constraint violation: 1052 Column 'deleted_at' in where clause is ambiguous。如何显示特定用户的所有喜欢的产品?
点赞.php
class Like extends Model
{
use SoftDeletes;
protected $table = 'likeables';
protected $fillable = [
'user_id',
'likeable_id',
'likeable_type',
];
/**
* Get all of the products that are assigned this like.
*/
public function products()
{
return $this->morphedByMany('App\Product', 'likeable');
}
}
产品.php
public function likes()
{
return $this->morphToMany('App\User', 'likeable')->whereDeletedAt(null);
}
public function getIsLikedAttribute()
{
$like = $this->likes()->whereUserId(Auth::id())->first();
return (!is_null($like)) ? true : false;
}
用户.php
public function likedProducts()
{
return $this->morphedByMany('App\Product', 'likeable')->whereDeletedAt(null);
}
刀片文件
@foreach (Auth::user()->likedProducts as $product)
<h2>{{ $product->price }}</h2>
@endforeach
【问题讨论】:
-
这并没有解决我的问题@EyadJaabo
标签: php mysql laravel laravel-5 eloquent