@extends('layouts.admin-master') @section('content')

{{$complain->count()}} Complaints Found

Complaint Status
@foreach($complain as $row)

{{$row->description}} @if($row->status != 'completed')
@endif @foreach($row->ComplainChart as $chat)
@if($chat->reply_by == 'user')
{{$chat->reply_by_name}} {{$chat->message_on}}

{{$chat->message}}

@else
{{$chat->reply_by_name}} {{$chat->message_on}}

{{$chat->message}}

@endif
@endforeach()
@endforeach()
@endsection