@include('landlord_layouts.header')
@include('landlord_layouts.navbar')
@include('landlord_layouts.topbar')

You are about to deactivate the units below. If you have an active tenant in the unit they will automatically be marked with an expired rental status and have limited functionality.
Please select confirm if you wish to continue.
@if(count($property) > 0) @foreach($property as $prop) @if(count($propertyUnits) > 0) @foreach($propertyUnits as $unit) @if($unit->property_id == $prop->id) @if(count($tenants) > 0) @if(in_array($unit->id, array_column($tenants->toArray(), 'property_unit_id'))) @foreach($tenants as $te) @if($te->property_unit_id == $unit->id) @endif @endforeach @else @endif @else @endif @endif @endforeach @endif @endforeach @endif
Unit Tenant Property Name
{{$unit->unit_name}}{{$te->first_name." ".$te->last_name}}VacantVacant{{$prop->property_name}}
Cancel
@include('landlord_layouts.footer')
@include('landlord_layouts.script')