@extends('layouts.admin') @section('title', 'Inquiry Management') @section('admin-content')

Inquiry Management

Review, assign, and track buyer inquiries

Export
{{ $stats['pending'] ?? 0 }}
Pending Review
{{ $stats['assigned'] ?? 0 }}
Assigned
{{ $stats['rejected'] ?? 0 }}
Rejected
{{ $stats['total'] ?? 0 }}
Total Inquiries
@forelse($inquiries as $inquiry) @empty @endforelse
Buyer Seller Product Interest Admin Status Seller Status Date Actions
@if($inquiry->admin_status == 'pending') @endif
{{ strtoupper(substr($inquiry->name ?? 'U', 0, 1)) }}
{{ $inquiry->name }}
{{ $inquiry->email }}
@if($inquiry->seller)
{{ Str::limit($inquiry->seller->company_name, 20) }}
@if($inquiry->seller->hasActiveSubscription()) Paid @else Free @endif @if($inquiry->seller->notification_enabled) @endif
@else Deleted Seller @endif
@if($inquiry->product)
{{ $inquiry->product->name }}
@else General Inquiry @endif
@if($inquiry->admin_status == 'pending') Pending @elseif($inquiry->admin_status == 'assigned') Assigned @else Rejected @endif @if($inquiry->status == 'new') New @else Responded @endif
{{ $inquiry->created_at->format('d M Y') }}
{{ $inquiry->created_at->format('H:i') }}
@if($inquiry->admin_status == 'pending') @endif
No Inquiries Found

Try different search criteria

@if($inquiries->hasPages())
{{ $inquiries->links() }}
@endif
@push('scripts') @endpush @endsection