@extends('layouts.owner') @section('breadcrumb') Manajemen / Properti @endsection @section('content')

Daftar Properti

Kelola semua kos, kontrakan, atau apartemen Anda.

Tambah Properti
@if($properties->isEmpty())

Belum ada properti

Mulai kelola bisnis properti Anda dengan menambahkan properti pertama Anda sekarang.

Tambah Properti Pertama →
@else
@foreach($properties as $property)
@if($property->photos->first()) @else
@endif
{{ $property->type }}

{{ $property->name }}

{{ $property->city }}

Total Kamar

{{ $property->rooms_count }}

Status

OK

Edit
@csrf @method('PATCH')
@csrf @method('DELETE')
@endforeach
@endif @endsection