public function getProductById($id)
{
return $this->products()->find($id);
}
public function hasProduct($id)
{
return $this->getProductById($id)->count()>0;
}
if ($user->hasProduct($product->id)) {
// не продавать
}
@if ($user->hasProduct($product->id))
<div class="danger">
Вы уже купили этот товар
</div>
@endif