@php use Carbon\Carbon; use Illuminate\Support\Str; @endphp @extends('layouts.root') @section('styles') @endsection @section('root-content')
@php $otherUser = $conversation->otherUser(); @endphp @if($otherUser)

Conversation avec {{ $otherUser->name }}

@else

Conversation avec un utilisateur inconnu

@endif
@foreach($messages as $message)

{{ $message->content }}

@endforeach
@csrf
@endsection @section('scripts') @endsection