In my coordinator_status column, there are values and null. When I run this code it only returns the ones with value only. I want to get null values too but I don't know how.
$coordetails = DB::table('courselist')
->join('users','users.id','=','courselist.coordinator')
->join('status','status.id','=','courselist.coordinator_status')
->select('courselist.id','users.name','status.status')
->where('courselist.faculty_id','=',$facultyid)
->get();