@extends('layouts.app') @section('title', 'Detail Invoice BOM - Cost Furniture') @section('page-title', 'Detail Invoice BOM') @section('content')
Invoice Code: {{ $invoice->product_code }}
| Product Name (Buyer) | : {{ $invoice->product_name }} |
| Product Category | : {{ $invoice->product_category }} |
| Product Type | : {{ $invoice->product_type }} |
| Product Code | : {{ $invoice->product_code }} |
| Size | : {{ $invoice->size }} |
| Date | : {{ $invoice->invoice_date->format('d F Y') }} |
| Order | : {{ $invoice->order_qty }} Pcs |
No Image
| No | Component Name | Details | Total |
|---|---|---|---|
| {{ $no++ }} | {{ ucwords(str_replace('-', ' ', $key)) }} | @if(isset($data['details'])) @if(isset($data['details']['width'])) Width: {{ $data['details']['width'] }}mm, @endif @if(isset($data['details']['length'])) Length: {{ $data['details']['length'] }}mm, @endif @if(isset($data['details']['qty'])) Qty: {{ $data['details']['qty'] }} @endif @if(isset($data['details']['m2'])) | M²: {{ number_format($data['details']['m2'], 6) }} @endif @if(isset($data['m3'])) | M³: {{ number_format($data['m3'], 6) }} @endif @else - @endif | {{ \App\Helpers\CasegoodHelper::formatRupiah($data['componentTotal'] ?? 0) }} |
| No calculation data available | |||
| TOTAL COMPONENTS: |
{{ \App\Helpers\CasegoodHelper::formatRupiah($invoice->grand_total) }} |
||
| BIAYA PRODUKSI (M³): |
{{ \App\Helpers\CasegoodHelper::formatRupiah($invoice->biaya_produksi ?? 0) }} |
||
| FINAL GRAND TOTAL: |
{{ \App\Helpers\CasegoodHelper::formatRupiah($invoice->final_grand_total ?? $invoice->grand_total) }} |
||