@extends('layouts.admin') @section('title', 'Contacts') @section('header', 'Contact Messages') @section('content') @if($unread > 0)
| Name | Message | Status | Date | Actions | |
|---|---|---|---|---|---|
| {{ $contact->name }} | {{ $contact->email }} | {{ $contact->message }} | {{ $contact->is_read ? 'Read' : 'Unread' }} | {{ $contact->created_at->format('M d, Y') }} |
View
@if(!$contact->is_read)
@endif
|
| No messages yet | |||||