foreach($exam_questions as $exam_question){
foreach($attempted_responses as $attempted_response){
if($exam_question->id === $attempted_response['question_id']){
// your code
}
}
}
или ваш конвертированный $ exam_questions как вложенный массив.
$exam_questions_array = json_decode(json_encode($exam_questions), true);
, тогда он может рассматриваться как вложенный массив.
foreach($exam_questions_array as $exam_question){
foreach($attempted_responses as $attempted_response){
if($exam_question['id'] === $attempted_response['question_id']){
// your code
}
}
}