@extends('layouts.app') @section('title') Electrical Continuity Test Verify LL @endsection @section('button') Back @endsection @section('content')
Production Detail


QC Output
@if (isset($electrical_continuity_details)) @foreach ($electrical_continuity_details as $key => $data) @endforeach @endif
No Time Serial No Status Reject Detail Interval (s)
{{ $loop->iteration }}

Summary

@if (isset($electrical_continuity_details_summary)) @foreach ($electrical_continuity_details_summary as $key => $data) @php if ($data->rejection_type == 'qc') { $reject_type = 'QC'; } else { $reject = \App\Models\TypeOfRejection::find($data->rejection_type); $reject_type = $reject ? $reject->type : ''; // Handle case where the rejection type is not found } @endphp @endforeach @endif
Reject Type Remarks
{{ $reject_type ?? '' }} {{ $data->comment }}

Verified (LL)

@csrf

Declined (LL)

@csrf

Cancelled (LL)

@csrf
@endsection