@extends('layouts.landing') @section('title',"Chat") @section('content')
Mensajes
{{-- CONTENEDOR CHAT --}}
{{-- MENSAJES --}}
@foreach($conversation->messages as $message)
{{ $message->user->name }}
{{ $message->message }}
@endforeach
{{-- INPUT --}}
@endsection @push('scripts') @endpush