# {{ $channel->name }}

@if ($channel->description)

{{ $channel->description }}

@endif
@foreach ($messages as $message)

{{ $message->sender_name }}

{{ $message->body }}

@if ($message->replies->isNotEmpty())
@foreach ($message->replies as $reply)

{{ $reply->sender_name }}

{{ $reply->body }}

@endforeach
@endif
@endforeach {{ $messages->links() }}
@csrf