@extends('admin.layouts.app') @section('content')

Inquiry Reports

@if (isset($data) && !empty($data)) @foreach ($data as $index => $dt) @endforeach @endif
# Full Name Email Address Subject Date Inquired
{{ $index + 1 }}
{{ $dt->full_name }}
{{ $dt->email_address ?? '-' }} {{ $dt->subject ?? '-' }} {{ date('F d, Y h:i A', strtotime($dt->created_at)) }}
@endsection