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

Invoice PO Subcon : edit

Page for edit Invoice PO Subcon

@switch($invoicePoSubcon->status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch
PO Subcon No : {{ $invoicePoSubcon->po->no }}
PO Subcon Date : {{ $invoicePoSubcon->po->formatted_date }}
Supplier Code : {{ $invoicePoSubcon->po->supplier_code }}
Delivery Date : {{ $invoicePoSubcon->po->formatted_delivery_date }}
ETA Date : {{ $invoicePoSubcon->po->formatted_eta_date }}
Notes : {{ $invoicePoSubcon->po->notes }}
PO PIC : {{ $invoicePoSubcon->po->createdBy->full_contact }}
PO Approved by : {{ $invoicePoSubcon->po->approvedBy->full_contact }}
PO Approved at : {{ $invoicePoSubcon->po->formatted_approved_at }}
Material to Subcon
This is the material to be produced by the subcontractor company
@foreach ($invoicePoSubcon->po->details as $detail) @endforeach
Material Fullname Material Code Material Type Material UoM Qty Order
{{ $detail->material->formatted_material }} {{ $detail->material_code }} {{ $detail->material->material_type_code }} {{ $detail->material->uom_code }} {{ $detail->qty }}
@csrf @method('PUT')
@error('no')
{{ $message }}
@enderror
@error('date')
{{ $message }}
@enderror
{{--
@error('bc_type')
{{ $message }}
@enderror
@error('bc_no')
{{ $message }}
@enderror
@error('bc_date')
{{ $message }}
@enderror
--}}

Are you sure want to edit this ?

@endsection @section('js') @endsection