@extends('layouts.app') @section('title', 'BoQ Proyek') @section('page_title', 'BoQ Proyek') @section('content')
Total BoQ: Rp {{ number_format((float) $total, 0, ',', '.') }}
| No | Nama Item | Volume | Satuan | Harga Satuan | Subtotal | Aksi |
|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $row->nama_item ?? $row->nama_pekerjaan ?? $row->uraian ?? '-' }} | {{ number_format((float) ($row->volume ?? 0), 2, ',', '.') }} | {{ $row->satuan ?? '-' }} | Rp {{ number_format((float) ($row->harga_satuan ?? 0), 0, ',', '.') }} | Rp {{ number_format((float) ($row->subtotal ?? 0), 0, ',', '.') }} | |
|
Belum ada item BoQ.
Tambahkan item pekerjaan untuk proyek ini. |
||||||