@extends('admin.layouts.container') @section('css') @endsection @section('content')

{{$head ?? '' }}

Chat History to: {{$message->course_name}} Course

{{date('d M', strtotime($message->created_at))}}
{{$message->user_name}}
{{$message->message}}
@if($message->message_file)
@endif @foreach($replies as $reply) @if($reply->user_id == $message->user_id)
{{$reply->user_name}}
{{$reply->message}}
@if($reply->message_file)
@endif @else
{{$reply->user_name}}
{{$reply->message}}
@if($reply->message_file)
@endif @endif @endforeach
@if($message->send_to == 'admin') @endif
@endsection @section('inner_js') {{-- --}} @endsection