@include('landlord_layouts.header')
@include('landlord_layouts.navbar')
@include('landlord_layouts.topbar')
Dashboard / / Units
@if(session()->has('message')) @endif
Back
{{$property->property_name}}
@if(count($property_unit) > 0) @foreach($property_unit as $unit) @endforeach @endif
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
@include('landlord_layouts.footer')
@include('landlord_layouts.script')