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