@extends('layouts.app') @section('content')

#{{ $conversation->title }} (Between @if($conversation->sender != null) {{ $conversation->sender->name }} @endif and @if($conversation->receiver != null) {{ $conversation->receiver->name }} @endif)

@foreach($conversation->messages as $message) @endforeach @if (Auth::user()->id == $conversation->receiver_id)
@csrf

@endif
@endsection