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

Invoice PO Subcon : create

Page for create Invoice PO Subcon

@switch($poSubcon->invoice->status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch
PO Subcon No : {{ $poSubcon->no }}
PO Subcon Date : {{ $poSubcon->formatted_date }}
Supplier Code : {{ $poSubcon->supplier_code }}
Delivery Date : {{ $poSubcon->formatted_delivery_date }}
ETA Date : {{ $poSubcon->formatted_eta_date }}
Notes : {{ $poSubcon->notes }}
PO PIC : {{ $poSubcon->createdBy->full_contact }}
PO Approved by : {{ $poSubcon->approvedBy->full_contact }}
PO Approved at : {{ $poSubcon->formatted_approved_at }}
Material to Subcon
This is the material to be produced by the subcontractor company
@foreach ($poSubcon->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
@error('no')
{{ $message }}
@enderror
@error('date')
{{ $message }}
@enderror

Are you sure want to create this ?

@endsection @section('js') @endsection