@extends('admin.layouts.app') @section('page_title', 'Pesan Masuk') @section('breadcrumb', " > " . "Pesan Masuk") @section('content')

Pesan Masuk @if($unreadCount > 0) {{ $unreadCount }} baru @endif

@if($unreadCount > 0)
@csrf
@endif
@if(request('filter')) @endif
@forelse($contacts as $contact) @empty @endforelse
Pengirim Email Pesan Tanggal Aksi
@if(!$contact->is_read) @endif {{ $contact->name }} {{ $contact->email }} {{ Str::limit($contact->message, 60) }} {{ $contact->created_at->format('d M Y') }}
@csrf @method('DELETE')
Tidak ada pesan.
{{ $contacts->links() }}
@endsection