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?

没有正确的解决方案

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top