@extends('customer.layouts.new-app') @section('title') Customer Care:YOUR REPORTS AND REQUEST HISTORY @endsection @section('content')
@include('customer.customer_care.sidebar')

YOUR REQUEST HISTORY

@if (count($intercom) > 0)

Intercom

@foreach ($intercom as $item)
Contact One
Name: {{ $item->name }}
Phone: {{ $item->number }}
Contact Two
Name: {{ $item->name2 }}
Phone: {{ $item->number2 }}
Contact Three
Name: {{ $item->name3 }}
Phone: {{ $item->number3 }}
View Messages »

@endforeach
@endif @if (count($meter) > 0)

Meter

@foreach ($meter as $item)
Special Request: {{ $item->special_request }}
View Messages »

@endforeach
@endif @if (count($gym) > 0)

Gym

@foreach ($gym as $item)
Name: {{ $item->name }}
Apartment Number: {{ $item->apart_number }}
Email: {{ $item->email }}
Phone: {{ $item->phone }}
Occupier Status: @if ($item->occupier_status == 'Owner') Owner @endif @if ($item->occupier_status == 'Tenant') Tenant @endif
View Messages »

@endforeach
@endif @if (count($complaint) > 0)

Complaint

@foreach ($complaint as $item)
Name: {{ $item->name }}
Apartment Number: {{ $item->apart_number }}
Email: {{ $item->email }}
Phone: {{ $item->phone }}
Occupier Status: @if ($item->occupier_status == 'Owner') Owner @endif @if ($item->occupier_status == 'Tenant') Tenant @endif
Complaint Type: {{ $item->complaint_type }}
Incident Time Date: {{ $item->incident_time_date }}
View Messages »

@endforeach
@endif @if (count($general) > 0)

General Request

@foreach ($general as $item)
Name: {{ $item->name }}
Apartment Number: {{ $item->apartment_number }}
Email: {{ $item->email }}
Phone: {{ $item->phone }}
Occupier Status: @if ($item->occupier_status == 'Owner') Owner @endif @if ($item->occupier_status == 'Tenant') Tenant @endif
Request Detail: {{ $item->request_detail }}
View Messages »

@endforeach
@endif
@endsection @section('js') @endsection