*/ protected $fillable = [ 'comment', 'user_id', 'active', ]; /** * User */ public function user(): BelongsTo { return $this->belongsTo(User::class); } /** * Comment's attached product */ public function product(): BelongsToMany { return $this->belongsToMany(Product::class); } }