You can register an extra 'quantity' field to your pivot table when defining the relationship by using withPivot(). Read here: http://laravel.com/docs/5.0/eloquent#working-with-pivot-tables
Alternatively, you could create a custom pivot model, however I think withPivot() will handle what you need.
Also as a side note, in your example, your pivot table name is not in the correct convention, it should be 'ingredient_recipe'. (Alphabetical order and singular). If you are overwriting this already for whatever reason, then that is fine.