@extends('layouts.base')
@section('title', 'Chats')
@section('content')
| Pharmacy |
Last Message |
Action |
@foreach($chats as $chat)
@php
$me = auth()->user()->pharmacy_id;
$other = $chat->pharmacy_one_id === $me ? $chat->pharmacyTwo : $chat->pharmacyOne;
@endphp
| {{ $other?->name }} |
{{ $chat->last_message_at?->format('Y-m-d H:i') }} |
Open
|
@endforeach
{{ $chats->links() }}
@endsection