@extends('layouts.base') @section('title', 'Chats') @section('content')

Chats

Marketplace
@foreach($chats as $chat) @php $me = auth()->user()->pharmacy_id; $other = $chat->pharmacy_one_id === $me ? $chat->pharmacyTwo : $chat->pharmacyOne; @endphp @endforeach
Pharmacy Last Message Action
{{ $other?->name }} {{ $chat->last_message_at?->format('Y-m-d H:i') }} Open
{{ $chats->links() }}
@endsection