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

Chat Message with Agent

@foreach($chats as $chat) @if( $chat->sender_id == Auth::id() && $chat->offer_buyer_id == $offerId->offer_id)

{!! $chat->message !!}

{{$chat->created_at->diffForHumans()}}
@elseif($chat->sender_id == $agentId && $chat->receiver_id == Auth::id())

{!! $chat->message !!}.

{{$chat->created_at->diffForHumans()}}
@endif @endforeach
@endsection