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?

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top