आप "उत्सुक लोड बाधाओं" की तलाश कर रहे हैं:http://laravel.com/docs/eloquent #प्रश्न-संबंध
<?php
$products2 = Product::with(array('metal', 'metal.fixes', 'metal.fixes.currency' => function($query){
$query->where('currency_id', '=', 1);
}))
->where('metal_id', '=', 1)
->get()->toArray();