Question

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?

Pas de solution correcte

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top