@extends('layouts.admin.index') @section('content')
@include('error-success')

Chat History


@if (count($data) > 0)
    @php $date = ''; @endphp @foreach ($data as $item) @if ($date != date('Y-m-d', strtotime($item['created_at']))) @php $date = date('Y-m-d', strtotime($item['created_at'])); @endphp

    {{ $date }}

    @endif @php if (does_url_exists($item['sender_detail']['image'])) { $senderImage = $item['sender_detail']['image']; } else { $senderImage = asset('web/images/no_image.jpg'); } @endphp @if ($item['sender_detail']['user_type'] == 2)
  • {{ $item['sender_detail']['name'] }}

    {{ $item['message'] }}

    {{ time_by_timezone($item->created_at, 'd F, Y h:i A') }}

  • @else
  • male
    {{ $item['sender_detail']['nick_name'] }}

    {{ $item['message'] }}

    {{ time_by_timezone($item->created_at, 'd F, Y h:i A') }}

  • @endif @endforeach
@else

No chat history found!

@endif
@endsection @section('style') @endsection @section('script') @endsection