@extends('admin.layouts.master') @push('css') @endpush @section('content')
| SN | Customer Name | Customer Contact | Subject | Message | Resolved | Action |
|---|---|---|---|---|---|---|
| {{ ($enquiries->currentPage() - 1) * $enquiries->perPage() + $key + 1 }} | {{ $enquiry->name }} | {{ $enquiry->phone ?? 'N/A' }} | {{ $enquiry->subject ?? 'N/A' }} | {{ Str::limit($enquiry->message, 60, '...') ?? 'N/A' }} | @if($enquiry->resolved) Resolved @endif @if(!$enquiry->resolved) Pending @endif |
|
😢 No Inquiries found @if (count(request()->all()) > 0) Reset Filter @endif |
||||||