@extends('dashboard.layouts.base') @section('content')

رسائل التواصل

{{-- 🔍 فلتر البحث --}}
@forelse ($contacts as $index => $contact) @empty @endforelse
# الاسم البريد الإلكتروني كود الدولة الهاتف الرسالة الحالة الإجراءات
{{ $contacts->firstItem() + $index }} {{ $contact->name }} {{ $contact->email }} {{ $contact->country_code }} {{ $contact->phone }} {{ Str::limit($contact->message, 50) }} @if($contact->is_read) مقروءة @else غير مقروءة @endif @if(Auth::guard('admin')->user()->can('delete contact_us'))
@csrf @method('PATCH')
@endif @if(Auth::guard('admin')->user()->can('read contact_us')) عرض @endif @if(Auth::guard('admin')->user()->can('delete contact_us'))
@csrf @method('DELETE')
@endif
لا توجد رسائل حالياً
{{-- {{ $contacts->links() }} --}} {{ $contacts->appends(request()->query())->links() }}
@endsection