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

Inspection Receive : edit

Page for edit Inspection Receive

Surat Jalan 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

Materials

Below are materials you send

@csrf @method('PUT')
@foreach ($workOrderInspectionSend->details as $detail) @endforeach
Material Fullname Material Code Material Name Material UoM Qty Send Qty Receive
{{ $detail->material->formatted_material }} {{ $detail->material_code }} {{ $detail->material->name }} {{ $detail->material->uom_code }} {{ $detail->qty }} @error('qty_receive.' . $detail->id)
{{ $message }}
@enderror
@error('qty_receive')
{{ $message }}
@enderror

Are you sure want to receive this ?

Once you create, your Stock Not Good on divisi will decrease

@endsection