Pergunta

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?

Nenhuma solução correta

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top