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

Chat Message with {{$recieverName->name ?? ''}}

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

{!! $chat->message !!}

{{$chat->created_at->diffForHumans()}}
@elseif($chat->sender_id == $recieverName->id && $chat->offer_buyer_id == $offerId->offer_id)

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

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

Please select buyer for the chat

@endif
@endsection