I just want to know that which join will be used behind the scenes in Laravel join(). Either it is leftjoin(), rightjoin() or innerjoin() ?
For example:
What join will be used here actually?
$friends_votes = DB::table('users')
->join('votes', 'votes.user_id', '=', 'users.id')
->where('votes.user_id',1);