@php
$employee_document_ids = $item->employee_documents->pluck('document_checklist_id')->toArray();
@endphp
@foreach($document_checklist as $checklist_item)
@php
$checked = in_array($checklist_item->id , $employee_document_ids) ? 'checked' : "";
@endphp
@endforeach