@extends('admin.layouts.app')
@section('title', 'WhatsApp Enquiries')
@section('breadcrumb')
Enquiries
WhatsApp
@endsection
@section('heading', 'WhatsApp Enquiries')
@section('subheading', 'Manage enquiries received via WhatsApp.')
@section('content')
| Name |
WhatsApp Number |
Property |
Message |
Response Status |
Agent |
Date |
@foreach ([
['name' => 'Arjun Mehta', 'whatsapp' => '+91 98765 43210', 'property' => '3 BHK Luxury Apartment, Bandra West', 'message' => 'Hi, I am interested in this property. Can you share more details?', 'response' => 'Replied', 'agent' => 'Raj Mehta', 'date' => '15 Feb 2025'],
['name' => 'Priya Sharma', 'whatsapp' => '+91 91234 56789', 'property' => '4 BHK Villa, Juhu', 'message' => 'Is the villa still available? When can I visit?', 'response' => 'Pending', 'agent' => 'Priya Sharma', 'date' => '15 Feb 2025'],
['name' => 'Rahul Verma', 'whatsapp' => '+91 99887 66554', 'property' => 'Commercial Office, BKC', 'message' => 'Need floor plan and parking details for the office space.', 'response' => 'Replied', 'agent' => 'Arjun Verma', 'date' => '14 Feb 2025'],
['name' => 'Neha Gupta', 'whatsapp' => '+91 98765 12345', 'property' => '2 BHK Apartment, Koramangala', 'message' => 'What is the best price you can offer? Ready to close deal.', 'response' => 'Replied', 'agent' => 'Neha Gupta', 'date' => '14 Feb 2025'],
['name' => 'Vikram Singh', 'whatsapp' => '+91 87654 32109', 'property' => 'Plot, Kharghar', 'message' => 'Plot dimensions and title status? Need for construction.', 'response' => 'Pending', 'agent' => '—', 'date' => '15 Feb 2025'],
['name' => 'Sunita Rao', 'whatsapp' => '+91 76543 21098', 'property' => 'Warehouse, Peenya', 'message' => 'Lease terms and monthly rent? Is it negotiable?', 'response' => 'Replied', 'agent' => 'Sunita Rao', 'date' => '13 Feb 2025'],
] as $row)
| {{ $row['name'] }} |
{{ $row['whatsapp'] }} |
{{ $row['property'] }} |
{{ Str::limit($row['message'], 50) }} |
{{ $row['response'] }}
|
{{ $row['agent'] }} |
{{ $row['date'] }} |
@endforeach
Showing 1 to 6 of 312 results
@endsection