@include('tenant_layouts.header')
@include('tenant_layouts.navbar')
@include('tenant_layouts.topbar')
@if(isset($popups)) @if(count($popups) > 0) @foreach($popups as $tenant)
@if(session('tenant_id') != $tenant->tenant_id) @endif @if(count($popups) == 1) @endif {{$tenant->unique_id}}
@endforeach @endif @endif
{{--
@if(isset($popups)) @if(count($popups) > 0) @foreach($popups as $tenant) @endforeach @endif @endif
--}}
@if (!empty($tenant_info))
@if(session()->has('message')) @endif
@if($tenant_info->status == true) Status: Active @else Status: Inactive @endif @if($landlord->subscription_status != 'Cancel') Edit @endif
{{$user->unique_id}}
{{$user->username}}
{{$tenant_info->first_name}}
{{$tenant_info->last_name}}
{{$tenant_info->address}}
{{$tenant_info->property_unit}}
{{$user->city}}
{{$user->state}}
{{$user->zipcode}}
{{$tenant_info->phone}}
{{$tenant_info->email}}
{{date_format($tenant_info->created_at,"m/d/Y")}}
@if($tenant_info->lease_start_date){{ date('m/d/Y', strtotime($tenant_info->lease_start_date))}} @endif
@if($tenant_info->lease_end_date){{date('m/d/Y', strtotime($tenant_info->lease_end_date))}} @endif
@if($tenant_info->next_payment_due_date){{date('m/d/Y', strtotime($tenant_info->next_payment_due_date))}} @endif
${{number_format($tenant_info->rental_amount, 2)}}
{{$tenant_info->account_status}}
@if($tenant_info->late_fee_owed) ${{ number_format($tenant_info->late_fee_owed, 2) }} @else $0.00 @endif
{{$tenant_info->rental_status}}
{{$tenant_info->lease_type}}
${{number_format($tenant_info->balance,2)}}
@if($tenant_info->image)
@else
@endif
@endif
@include('tenant_layouts.footer')
@include('tenant_layouts.script')