Pregunta

in Yii framework we can enforce to use JOIN for relations such as this action:

public function relations() {

    return array(

        'posts'=>array(self::HAS_MANY, 'Post', 'user_id', 'together'=>false),

    );

}

how to use this method in laravel?

No hay solución correcta

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top