@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 }}

@foreach($properties as $property) @endforeach
Id Name Address City Status Action
{{ $property->id }} {{ $property->property_name }} {{ $property->address }} {{ $property->city }} @if($property->active_property) Active @else Inactive @endif
@include('admin_layout.footer')
@include('admin_layout.script')