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

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

Date : {{ $poBuyerInvoice->formatted_date }}

@switch($poBuyerInvoice->bc_status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch
BC Type : {{ $poBuyerInvoice->bc_data['type'] }}
BC No : {{ $poBuyerInvoice->bc_data['no'] }}
BC Date : {{ $poBuyerInvoice->bc_data['date'] }}
Negara Asal : {{ $poBuyerInvoice->bc_data['negara_asal'] ?? null }}
Negara Tujuan : {{ $poBuyerInvoice->bc_data['negara_tujuan'] ?? null }}
Nomor Polisi : {{ $poBuyerInvoice->bc_data['nopol'] }}
Pengangkut : {{ $poBuyerInvoice->bc_data['pengangkut'] }}
Forwarder : {{ $poBuyerInvoice->bc_data['forwarder'] }}
Nama Kapal : {{ $poBuyerInvoice->bc_data['nama_kapal'] }}
AWB : {{ $poBuyerInvoice->bc_data['awb'] }}
ETA : {{ $poBuyerInvoice->bc_data['eta'] }}
ETD : {{ $poBuyerInvoice->bc_data['etd'] }}
No Karantina : {{ $poBuyerInvoice->bc_data['no_karantina'] }}
Tanggal Karantina : {{ $poBuyerInvoice->bc_data['tanggal_karantina'] }}
No Kontainer : {{ $poBuyerInvoice->bc_data['no_kontainer'] }}
Jumlah Kontainer : {{ $poBuyerInvoice->bc_data['jumlah_kontainer'] }}

PO Buyer No : {{ $poBuyerInvoice->po->no }}

Date : {{ $poBuyerInvoice->po->formatted_date }}

Buyer Code : {{ $poBuyerInvoice->buyer_code }}
Delivery Date : {{ $poBuyerInvoice->po->delivery_date }}
ETA Date :
Notes :
@foreach ($poBuyerInvoice->details as $detail) @endforeach
Material Fullname Material Code HS Code Material Type Material UoM Qty Order
{{ $detail->material->formatted_material }} {{ $detail->material_code }} {{ $detail->material->hs_code }} {{ $detail->material->material_type_code }} {{ $detail->material->uom_code }} {{ $detail->qty }}
@endsection @section('js') @endsection