@extends('layouts.app') @section('title', 'Chat') @section('page-title', $conversation->title ?? 'Conversation') @section('content')
@foreach($messages->reverse() as $msg)
@if($msg->sender_id !== auth()->id())

{{ $msg->sender->name ?? 'Unknown' }}

@endif

{{ $msg->content }}

{{ $msg->created_at->format('h:i A') }}

@endforeach
@csrf
@endsection