@extends('admin.layouts.app')
@section('page_title', 'Pesan Masuk')
@section('breadcrumb', " > " . "Pesan Masuk")
@section('content')
@if(request('filter'))
@endif
|
Pengirim |
Email |
Pesan |
Tanggal |
Aksi |
@forelse($contacts as $contact)
|
@if(!$contact->is_read)
@endif
|
{{ $contact->name }} |
{{ $contact->email }} |
{{ Str::limit($contact->message, 60) }} |
{{ $contact->created_at->format('d M Y') }} |
|
@empty
| Tidak ada pesan. |
@endforelse
{{ $contacts->links() }}
@endsection