Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Eloquent:Calling Where auf eine Beziehung

Sie suchen nach "Eager Load Constraints":http://laravel.com/docs/eloquent #querying-relations

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