@extends('admin.layouts.master') @section('title', 'Restore Enquiry') @section('content')

{{ __('Restore Enquiry') }}

@foreach ($enquiries as $id => $enquiry) @endforeach
{{ __('#') }} {{ __('Name') }} {{ __('Email') }} {{ __('Phone No') }} {{ __('Status') }} {{ __('Followup Type') }} {{ __('Action') }}
{{ ++$id }} {{ $enquiry->name }} {{ $enquiry->email }} {{ $enquiry->phone_no }} @if ($enquiry->status == 'pending') Pending @elseif($enquiry->status == 'follow-up') Follow Up @elseif($enquiry->status == 'completed') Completed @endif @if ($enquiry->followup_type == 'call') Call @elseif($enquiry->followup_type == 'whatsapp') WhatsApp @elseif($enquiry->followup_type == 'message') Message @elseif($enquiry->followup_type == 'email') Email @elseif($enquiry->followup_type == 'info-required') Info Required @elseif($enquiry->followup_type == 'docs-required') Docs Required @endif {{ __('') }}
@csrf
@endsection