How i can use query builder to condition whereNotIn to an other table without using DB::raw();
$query ="select * from project
where prj_usr_id= $user->id
and now()<prj_expiry
and prj_id not in(select bd_prj_id from bid where bd_status=1)
and prj_status='open'
order by prj_updated_date desc;