@extends('layouts.app') @section('title', 'WhatsApp Conversations') @push('styles') @endpush @section('content')
Manage customer conversations and orders placed through WhatsApp.
| Phone | Customer | State | Last Message | Last Order | Actions |
|---|---|---|---|---|---|
| {{ $conv->phone ?? '—' }} | {{ $conv->customer?->name ?? '—' }} | {{ str_replace('_', ' ', $state) }} | {{ $lastAt ? \Carbon\Carbon::parse($lastAt)->diffForHumans() : '—' }} | @if($conv->last_order_id && $conv->lastOrder) #{{ $conv->lastOrder->id }} @else — @endif | View |
When customers message your WhatsApp business number, their conversations will appear here.
@if(!$tenant->wa_enabled) Configure WhatsApp @endif