@extends('layouts.app') @section('content')
Page for show Inspection
| Inspection No | : | {{ $workOrderInspection->no }} |
| Inspection At | : | {{ $workOrderInspection->formatted_created_at }} |
| Send From | : | {{ $workOrderInspection->sj->schedule->wo->divisi_destination }} |
| Status | : | @switch($workOrderInspection->status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch |
| Complete At | : | {{ $workOrderInspection->formatted_complete_at }} |
| Complete At | : | @switch($workOrderInspection->reason) @case('REJECT') REJECT @break @case('SAMPLING') SAMPLING @break @default @endswitch |
| Material Fullname | Material Code | Material Name | Material UoM | Qty Inspection | Qty Receive |
|---|---|---|---|---|---|
| {{ $workOrderInspection->material->formatted_material }} | {{ $workOrderInspection->material_code }} | {{ $workOrderInspection->material->name }} | {{ $workOrderInspection->material->uom_code }} | {{ $workOrderInspection->qty }} | {{ $workOrderInspection->qty_received }} |