@include('Admin.Includes.header') @php use Illuminate\Support\Facades\Auth; $logged_in_user = Auth::user(); @endphp

{{ __('Contact Us Messages') }}

@if (session('success')) @endif @if ($errors->any()) @endif
@forelse($contacts as $contact) @empty @endforelse
Name Email Phone Subject Message File Registered At Actions
{{ $contact->f_name }} {{ $contact->l_name }}
{{ $contact->email }} @if ($contact->phone) {{ $contact->phone }} @else - @endif @if ($contact->subject) {{ $contact->subject }} @else - @endif @if ($contact->message) {{ Str::limit($contact->message, 50) }} @else - @endif @if ($contact->file_path) Download @else - @endif {{ $contact->created_at->format('Y-m-d H:i:s') }}
No data
@foreach ($contacts as $contact) @endforeach