Manufacturer: {{ $report['snapshot']['manufacturer']['name'] }} Model Number: {{ $report['snapshot']['model']['name'] }} Serial Number: {{ $report['snapshot']['serial_number'] }}
Scale ID: {{ $report['snapshot']['custom_name'] == null ? 'N/A' : $report['snapshot']['custom_name'] }} Capacity x Graduation: {{ $report['snapshot']['capacity'] }} x {{ $report['snapshot']['graduation'] }} {{ $report['snapshot']['measureUnit']['abbreviation'] }} Tolerance: {{ $report['snapshot']['tolerance'] }} {{ $report['snapshot']['passFailMethod']['name'] }}
Location: {{ $report['snapshot']['location'] == null ? 'N/A' : $report['snapshot']['location'] }} Status of Scale: {{ $report['scale_status'] == null ? 'N/A' : $report['scale_status'] }}
Reading at the Beginning: {{ $report['start_reading'] }} Reading at the End: {{ $report['end_reading'] }}
@foreach( $report['snapshot']['quizzes'] as $quiz )

{{ $quiz['name'] }}

@foreach($report['answers'] as $answer) @if($answer['quiz_uuid'] == $quiz['uuid'] && $report['scale_status'] == 'in_use') @elseif($answer['quiz_uuid'] == $quiz['uuid'] && $report['scale_status'] != 'in_use') @endif @endforeach
Weight Applied Reading As Found Error As Found Reading As Left Error As Left
{{ $answer['weight_applied'] }} {{ $answer['as_found_reading'] }} {{ $answer['as_found_error'] }} {{ $answer['as_left_reading'] }} {{ $answer['as_left_error'] }}
{{$answer['weight_applied']}} N/A N/A N/A N/A
@endforeach