@extends('backend.layouts.main') @section('title') Contact Us Inquiries @endsection @section('content')

Contact Us Inquiries List

@foreach ($contacts as $contact) @endforeach
S.N. Full Name Email Phone Number Service Status Actions
{{ $loop->iteration }} {{ $contact->full_name }} {{ $contact->email }} {{ $contact->phone_number }} {{ $contact->service_interested_in ?? 'N/A' }} @if ($contact->is_contacted) Contacted @else Pending @endif
@endsection @section('scripts') @endsection