@extends('layouts.app') @section('title', 'RAB Proyek') @section('page_title', 'RAB Proyek') @section('content')
← Detail Proyek + Item
@if (session('success'))
{{ session('success') }}
@endif

Daftar Item RAB

Total RAB: Rp {{ number_format((float) $total, 0, ',', '.') }}

@forelse ($items as $i => $row) @empty @endforelse
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, ',', '.') }}
Edit
@csrf
Belum ada item RAB.

Tambahkan item pekerjaan untuk proyek ini.

@endsection