Mysql
 sql >> Database >  >> RDS >> Mysql

Eloquente:Calling Where su una relazione

Stai cercando "Vincoli di carico desiderosi":http://laravel.com/docs/eloquent #query-relazioni

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