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

Invoice No : {{ $poBuyerInvoice->no }}

Date : {{ $poBuyerInvoice->formatted_date }}

@switch($poBuyerInvoice->status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch
PO Buyer No : {{ $poBuyerInvoice->po->no }}
PO Buyer Date : {{ $poBuyerInvoice->date }}
Buyer Code : {{ $poBuyerInvoice->buyer_code }}
Invoice PIC : {{ $poBuyerInvoice->createdBy->full_contact }}
Invoice Complete At : {{ $poBuyerInvoice->formatted_complete_at }}
@foreach ($poBuyerInvoice->details as $detail) @endforeach
Material Fullname Material Code Material Type Material UoM Currency Code Price Per Unit Amount Qty Order
{{ $detail->material->formatted_material }} {{ $detail->material_code }} {{ $detail->material->material_type_code }} {{ $detail->material->uom_code }} {{ $detail->currency_code }} {{ $detail->formatted_price_per_unit }} {{ $detail->formatted_amount }} {{ $detail->qty }}
@endsection @section('js') @endsection