avatar 1
{{ session('user_chat_name') ?? 'Undefined' }}

Xin Chào, Phòng Đào Tạo Có Thể Giúp Được Gì Cho Bạn?

avatar 1
@foreach ($allMessages as $item) @if (!empty($item->student_id == session('user_chat_id') && $item->role_id == 2)) {{-- Student --}}
avatar 1

{{ $item->message }}

{{ $item->created_at }}

@elseif (!empty($item->student_id == null && $item->role_id == 4)) {{-- Training Officer --}}

{{ $item->message }}

{{ $item->created_at }}

avatar 1
@endif @endforeach
@csrf
avatar 3