Eloquente: Chamando Onde em uma relação

Eu tenho a seguinte consulta ORM Eloquent.

$products2 = Product::with('metal', 'metal.fixes', 'metal.fixes.currency')
    ->where('metal_id', '=', 1)
    ->get()->toArray();

A saída dessa consulta é a seguinte:

http://pastebin.com/JnDi7swv

Desejo restringir ainda mais minha consulta para exibir somente produtos ondefixes.currency_id = 1.

$products2 = Product::with('metal', 'metal.fixes', 'metal.fixes.currency')
    ->where('metal_id', '=', 1)
    ->where('metal.fixes.currency_id', '=', 1)
    ->get()->toArray();

Alguém poderia me ajudar com este segundo onde, por favor, porque eu estou recebendo o seguinte erro:

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'metal.fixes.currency_id' 
in 'where clause' (SQL: select * from `products` where `metal_id` = ? 
and `metal`.`fixes`.`currency_id` = ?) (Bindings: array ( 0 => 1, 1 => 1, ))

Resolvido com a ajuda de Rob Gordijn:

$products2 = Product::with(array(
    'metal', 
    'metal.fixes.currency', 
    'metal.fixes' => function($query){
        $query->where('currency_id', '=', 1);
     }))
        ->where('common', '=', 1)
        ->where('metal_id', '=', 1)
        ->get()->toArray();

questionAnswers(1)

yourAnswerToTheQuestion