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

Inspection Receive : show

Page for show Inspection Receive

Inspection Send No : {{ $workOrderInspectionSend->no }}
Send At : {{ $workOrderInspectionSend->formatted_created_at }}
Send From : {{ $workOrderInspectionSend->send_from_divisi }}
Send To : {{ $workOrderInspectionSend->send_to_divisi }}
Status : @switch($workOrderInspectionSend->status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch
Complete At : {{ $workOrderInspectionSend->formatted_complete_at }}

Materials

Below are materials you received

@foreach ($workOrderInspectionSend->details as $detail) @endforeach
Material Fullname Material Code Material Name Material UoM Qty Send Qty Received
{{ $detail->material->formatted_material }} {{ $detail->material_code }} {{ $detail->material->name }} {{ $detail->material->uom_code }} {{ $detail->qty }} {{ $detail->qty_received }}
@endsection