@extends('layouts.app') @section('title', 'Messages') @section('subtitle', 'Your Conversations') @section('content')
Manage your conversations with buyers and sellers
{{ $otherUser->name }} @if($otherUser->company_name) ({{ $otherUser->company_name }}) @endif
@if($chat->last_message_at) {{ $chat->last_message_at->diffForHumans() }} @endif@if($chat->last_message) {{ Str::limit($chat->last_message, 50) }} @else No messages yet @endif
Start a conversation from the marketplace.
{{ auth()->user()->isBuyer() ? 'Seller' : 'Buyer' }}
Start the conversation by sending a message.
Choose a conversation from the list to start messaging.