@extends('layouts.app') @section('content')

Inspection

Page for Inspection

@foreach ($workOrderInspections as $workOrderInspection) @endforeach
Inspection No Inspection At Material Code Material Name Material UoM Send From Send To Reason Status Action
{{ $workOrderInspection->no }} {{ $workOrderInspection->formatted_created_at }} {{ $workOrderInspection->material_code }} {{ $workOrderInspection->material->name }} {{ $workOrderInspection->material->uom_code }} {{ $workOrderInspection->sj->schedule->wo->divisi_destination }} {{ $workOrderInspection->send_to_divisi }} @switch($workOrderInspection->reason) @case('REJECT') REJECT @break @case('SAMPLING') SAMPLING @break @default @endswitch @switch($workOrderInspection->status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch @switch($workOrderInspection->status) @case(false) @break @case(true) @break @default @endswitch
@endsection @section('js') @endsection