Check Query Result Availability
User $feedbackStatus=DB::table('responder_feedback_status')->where(['project_id'=>$responder->project_id, 'participant_id'=>$responder->participant_id, 'responder_id'=>$responder->id])->first(); how to check if result avail Assistant To check if the query result (`$feedbackStatus`) is available, you can use a simple conditional statement in Laravel. The `first()` method returns `null` if no matching record is found. Here's how you can handle it: $feedbackStatus = DB::table('responder_feedback_status') ->where([ 'project_id' => $responder->project_id, 'participant_id' => […]