@include('landlord_layouts.header')
| Unit | Tenant | Status |
|---|---|---|
| {{$unit->unit_name}} | @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) {{$te->first_name." ".$te->last_name}} @endif @endforeach @else Vacant @endif @else Vacant @endif | @if(count($tenants) > 0) @if(!in_array($unit->id, array_column($tenants->toArray(), 'property_unit_id'))) Register New Tenant @endif @else Register New Tenant @endif |