@extends('layouts.app') @section('title', 'Product Pendukung Box - Cost Furniture') @section('page-title', 'Product Pendukung Box') @section('content') @if(session('success'))
Belum ada product pendukung box.
Tambah Product Pertama| No | Material Code | Description | Tipe | Harga Asli | Lebar | Panjang | M² | Harga/M² | Harga Finished | Action |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $product->material_code }} | {{ $product->description }} | @if($product->pricing_type === 'pcs') Harga PCS @else Harga M2 @endif | {{ \App\Helpers\CasegoodHelper::formatRupiah($product->harga_asli) }} | {{ $product->lebar ? number_format($product->lebar, 0) : '-' }} | {{ $product->panjang ? number_format($product->panjang, 0) : '-' }} | {{ $product->m2 ? number_format($product->m2, 2) : '-' }} | @if($product->pricing_type === 'm2' && $product->harga_m2) {{ \App\Helpers\CasegoodHelper::formatRupiah($product->harga_m2) }} @else - @endif | {{ \App\Helpers\CasegoodHelper::formatRupiah($product->harga_finished) }} |