'int', 'ingredient_id' => 'int' ]; protected $fillable = [ 'product_id', 'ingredient_id' ]; public function ingredient() { return $this->belongsTo(Ingredient::class, 'ingredient_id'); } public function product() { return $this->belongsTo(Product::class, 'product_id'); } }