LAPORAN PROGRES SURAT TANAH

@php $no = 1; $totalLegal = 0; @endphp @foreach ($progress as $item) @php // Ubah nilai Legal ke format rupiah, tetap hitung total walaupun null $legalValue = is_numeric($item->Legal) ? $item->Legal : 0; $totalLegal += $legalValue; @endphp @endforeach
No Kode Proyek Tanggal Deskripsi Legal Keterangan UserCreated
{{ $no++ }} {{ $item->getProyek->NamaProyek ?? '-' }} {{ $item->created_at ? $item->created_at->format('d-m-Y H:i') : '-' }} {{ $item->Deskripsi ?? '-' }} {{ is_numeric($item->Legal) ? 'Rp ' . number_format($item->Legal, 0, ',', '.') : '-' }} {{ $item->Keterangan ?? '-' }} {{ $item->UserCreated ?? '-' }}
Total Legal {{ 'Rp ' . number_format($totalLegal, 0, ',', '.') }}