@extends('admin.layouts.master') @section('breadcrumb') @endsection @section('content')
@if (session('success')) @endif

الرسائل المستلمة

@foreach ($contacts as $contact) @endforeach
الاسم البريد الإلكتروني رقم الهاتف الموضوع الرسالة الإجراءات
{{ $contact->name }} {{ $contact->email }} {{ $contact->phone ?? '' }} {{ $contact->subject }} {{ Str::limit($contact->message, 50) }} عرض
@csrf @method('DELETE')
@if ($unreadNotifications->count() > 0)

الإشعارات غير المقروءة

@csrf
@foreach ($unreadNotifications as $notification) @endforeach
الإشعار الإجراءات
{{ $notification->data['name'] }} - {{ $notification->data['subject'] }}
@csrf
@csrf @method('DELETE')
@endif
@endsection