@extends('Admin.layout.app') @section('title', 'WhatsApp Chat') @section('content')
@if(isset($selected))
{{ strtoupper(substr($selected->name,0,1)) }}
{{ $selected->name }}
{{ $selected->phone }}
@foreach($messages as $msg) @if($msg->direction=='incoming')
@if($msg->type == 'image') @elseif($msg->type == 'audio') @elseif($msg->type == 'video') @elseif($msg->type == 'document') 📎 {{ $msg->message }} @else {{ $msg->message }} @endif
{{ $msg->created_at->format('h:i A') }}
@else
@if($msg->type == 'image') @elseif($msg->type == 'audio') @elseif($msg->type == 'video') @elseif($msg->type == 'document') 📎 {{ $msg->message }} @else {{ $msg->message }} @endif
{{ $msg->created_at->format('h:i A') }}
@endif @endforeach
@csrf
🎤 Recording... 00:00
@else

WhatsApp Business

Select a customer to start chatting.

@endif
@endsection @push('js') @if(isset($selected)) @endif @endpush