@props([
'interview',
])
@if(!empty($interview->candidate_notes) || !empty($interview->interviewer_notes) || !empty($interview->candidate_drawing) || (is_array($interview->formatted_recordings) && count($interview->formatted_recordings) > 0))
@if(!empty($interview->candidate_notes))
CANDIDATE NOTEPAD NOTES (UNIQUE ID SYNCED):
{{ $interview->candidate_notes }}
@endif
@if(!empty($interview->interviewer_notes))
INTERVIEWER EVALUATION NOTES (STORED BY UNIQUE ID):
{{ $interview->interviewer_notes }}
@endif
@if(!empty($interview->candidate_drawing))
CANDIDATE DRAWING DIAGRAM:

@endif
@if(is_array($interview->formatted_recordings) && count($interview->formatted_recordings) > 0)
📹 STORED CALL SESSION RECORDINGS ({{ count($interview->formatted_recordings) }} RECORDINGS):
📜 Scroll to view all
@foreach($interview->formatted_recordings as $displayIdx => $rec)
Recording #{{ count($interview->formatted_recordings) - $displayIdx }} ({{ $rec['created_at'] }})
📥 Download MP4 Video
@endforeach
@endif
@endif