| CONFIDENTIAL |
|
UNAUTHORIZED USE, DISCLOSURE OR COPYING OF THIS DOCUMENT IS NOT PERMITTED
|
| 1.0 ADMINISTRATIVE INFORMATION |
| 1.1 Audit Number: |
{{ $checklist->audit_number ?? '' }} |
| 1.2 Audit Date: |
@if($type == 'AUDIT')
{{ $checklist->start_date ?? '' }}
{{ $checklist->end_date ? ' to '.$checklist->end_date : '' }}
@endif
|
| 1.3 Audit Title: |
{{ $checklist->title ?? '' }} |
| 1.4 Location: |
{{ $type == 'AUDIT' ? ($checklist->location ?? '') : '' }} |
| 1.5 Audit Team Lead Auditor: |
{{ $checklist->lead_auditor_name ?? '' }} |
| Auditors: |
@if($checklist->auditors_json)
@foreach(json_decode($checklist->auditors_json) as $key=>$auditor)
{{ ($key+1).'. '.$auditor->name }}
@endforeach
@endif
|
| 2.0 AUDIT OBJECTIVE |
| {!! $checklist->audit_objective ?? '' !!} |
| 3.0 AUDIT SCOPE |
| {!! $checklist->audit_scope ?? '' !!} |
| 4.0 REFERENCE MATERIAL |
| {!! $checklist->reference_material ?? '' !!} |
@if($type == 'AUDIT')
@php($indiduallist = json_decode($checklist->individuals_json))
@if($indiduallist && count($indiduallist) > 0)
|
INDIVIDUALS INTERVIEWED
|
| FULL NAME |
POSITION HELD |
@foreach($indiduallist as $key=>$individual)
| {{ ($key+1).'. '.$individual->name }} |
{{ $individual->position }} |
@endforeach
@endif
@endif
| 5.0 EXECUTIVE SUMMARY |
| {!! $checklist->findings ?? '' !!} |