@extends('admin.layouts.app') @section('content')

Chats

@foreach ($data as $key => $result) @php $facilityImage = $result->facility?->userDocument()->first() ->document_url; $providerImage = $result->provider?->photo_url; @endphp @endforeach
Facility Provider Preview Actions
{!! $result->facility?->name !!} {!! $result->provider?->name !!} {!! Str::limit(ucwords($result->last_message), 20, '...') !!}
{{ date('h:i A', strtotime($result->last_message_date_time)) }} | {{ date('d-M-Y', strtotime($result->last_message_date_time)) }}
@endsection @section('footer-js') @endsection