@extends('layouts.app')
@section('title')
Final Checking Verify SV
@endsection
@section('button')
Back
@endsection
@section('content')
Production Detail
QC Output
No
Time
Serial No
Status
Reject Detail
Interval (s)
@if (isset($final_checking_details))
@foreach ($final_checking_details as $key => $data)
{{ $loop->iteration }}
@endforeach
@endif
Rejection
Time:
Rejection Type
Comments
Summary
Reject Type
Remarks
@if (isset($final_checking_details_summary))
@foreach ($final_checking_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