Hubungi Agen Properti

A
Admin Carani Estate
Konsultan Properti
5.0

{{ $properti->nama_properti }}

Bondowoso | Blok {{ $properti->blok->nama_blok ?? '-' }}
Rp {{ number_format($properti->harga_properti, 0, ',', '.') }}
Harga Jual
{{ $properti->luas_bangunan }}
Luas Bangunan (m²)
{{ $properti->luas_tanah }}
Luas Tanah (m²)
{{ $properti->tipe_properti }}
Tipe
{{ $properti->blok->nama_blok ?? '-' }}
Blok
{{ $properti->stok_unit }}
Stok Unit
@php if ($properti->status_unit == 'tersedia') { $statusWarna = 'color:#059669'; } elseif ($properti->status_unit == 'dipesan') { $statusWarna = 'color:#f59e0b'; } else { $statusWarna = 'color:#dc2626'; } @endphp
{{ ucfirst($properti->status_unit) }}
Status

Properti Serupa

@php $serupaList = \App\Models\Properti::with('blok') ->where('tipe_properti', $properti->tipe_properti) ->where('id_properti', '!=', $properti->id_properti) ->limit(5)->get(); @endphp @foreach($serupaList as $serupa) @php if ($serupa->status_unit == 'tersedia') { $badgeColor = '#10b981'; } elseif ($serupa->status_unit == 'dipesan') { $badgeColor = '#f59e0b'; } else { $badgeColor = '#dc2626'; } @endphp
{{ $serupa->nama_properti }}
{{ ucfirst($serupa->status_unit) }}
Rp {{ number_format($serupa->harga_properti, 0, ',', '.') }}

{{ $serupa->nama_properti }}

Blok {{ $serupa->blok->nama_blok ?? '-' }}, Bondowoso
{{ $serupa->tipe_properti }}
{{ $serupa->kategori_properti }}
Lihat Detail @auth Pesan @else Login @endauth
@endforeach