@extends('admin.layout') @section('title', 'Detail Properti') @section('content')
Tidak ada gambar
| Judul | : {{ $property->title }} |
| Status | : @if($property->is_active) Aktif @else Tidak Aktif @endif |
| Ketersediaan | : @if($property->is_available) Tersedia @else Tidak Tersedia @endif |
| Tipe | : {{ ucfirst($property->property_type) }} |
| Alamat | : {{ $property->address }}, {{ $property->city }}, {{ $property->country }} |
| Luas Tanah | : {{ $property->land_area_sqm }} m² |
| Luas Bangunan | : {{ $property->building_area_sqm }} m² |
| Kamar Tidur | : {{ $property->bedrooms }} |
| Kamar Mandi | : {{ $property->bathrooms }} |
| Lantai | : {{ $property->floors }} |
| Garasi | : {{ $property->garage_spaces }} |
| Status Furnitur | : {{ str_replace('_',' ', ucfirst($property->furnishing_status)) }} |
| Tahun Dibangun | : {{ $property->year_built }} |
| Harga/Bulan | : Rp {{ number_format($property->base_price_per_month, 0, ',', '.') }} |
| Harga/Tahun | : Rp {{ number_format($property->base_price_per_year, 0, ',', '.') }} |
| Minimal Sewa | : {{ $property->minimum_rental_period }} bulan |
| Maksimal Sewa | : {{ $property->maximum_rental_period }} bulan |
| Dibuat | : {{ $property->created_at->format('d M Y H:i') }} |
| Diupdate | : {{ $property->updated_at->format('d M Y H:i') }} |
{{ $property->description }}
@elseTidak ada deskripsi
@endifTidak ada fasilitas
@endif