@extends('Admin.Layout.main_layout') @section('title','Manage Product') @section('main_container')

Manage Enquiry

@if(!$enquiry_arr->isEmpty()) @foreach($enquiry_arr as $key => $data) @endforeach @else

No Enquiry Available

@endif
id Product Name Email Phone No Country Date Time
{{ ($key+1) }} {{ $data->product_name }} {{ $data->email }} {{ $data->phone_number }} {{ $data->country }} {{ date('Y-m-d', strtotime($data->created_at)) }} {{ date('h:i A', strtotime($data->created_at)) }}
@endsection