@include('admin_layout.header')
@include('admin_layout.leftbar')
@include('admin_layout.navbar')
Dashboard
/ Properties of {{ $landlord->first_name }} {{ $landlord->last_name }}
Properties of {{ $landlord->first_name }} {{ $landlord->last_name }}
Id
Name
Address
City
Status
Action
@foreach($properties as $property)
{{ $property->id }}
{{ $property->property_name }}
{{ $property->address }}
{{ $property->city }}
@if($property->active_property)
Active
@else
Inactive
@endif
View Unit
@endforeach
@include('admin_layout.footer')
@include('admin_layout.script')