@extends('layouts.app') @section('content')
Chat with {{ $receiver->name }}
@if(!empty($courseId)) Course ID: {{ $courseId }} @endif
@if(auth()->user()->hasRole('teacher')) Back @endif
{{-- ✅ Blade render + put data-id to track --}} @foreach($messages as $msg)
{{ $msg->message }}
{{ $msg->created_at->timezone('Asia/Karachi')->format('d M Y, H:i') }}
@endforeach
@endsection @push('script') @endpush