@include('landlord_layouts.header')
@include('landlord_layouts.navbar')
@include('landlord_layouts.topbar')
Dashboard
/
Tenant
Phone
Email
@if(count($tenants) > 0) @foreach($tenants as $t)
{{$t->first_name}} {{$t->last_name}}
{{$t->phone}}
{{$t->email}}
@endforeach @endif
@include('landlord_layouts.footer')
@include('landlord_layouts.script')