@extends('admin.layouts.app') @section('title', 'Quản lý liên hệ') @section('page-title', 'Quản lý liên hệ') @section('content')
Tổng: {{ $contacts->total() }} liên hệ
@forelse($contacts as $contact)

{{ $contact->name }}

@if($contact->status === 'new') Mới @elseif($contact->status === 'read') Đã đọc @else Đã trả lời @endif
{{ $contact->email }}
@if($contact->phone)
{{ $contact->phone }}
@endif
{{ $contact->created_at->format('M d, Y H:i') }}

{{ $contact->subject }}

{{ Str::limit($contact->message, 100) }}

Xem @if($contact->status === 'new')
@csrf
@endif
@csrf @method('DELETE')
@empty

Không tìm thấy liên hệ nào.

@endforelse
{{ $contacts->links() }}
@endsection