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

Inspection Send : edit

Page for edit Inspection Send

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

@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 }} {{ $detail->qty_received }}

Are you sure want to delete this ? .

Once you delete you cannot recover this Inspection and your Stock Not Good will rollback!

@csrf @method('DELETE')
@endsection @section('js') @endsection