@extends('admin.layout')
@section('title', 'Messages contact')
@section('content')
Messages contact
Demandes envoyees depuis le formulaire du site.
| Date |
Nom |
Email |
Besoin |
Lu |
|
@forelse($messages as $msg)
| {{ $msg->created_at->format('d/m/Y H:i') }} |
{{ $msg->name }} |
{{ $msg->email }} |
{{ $msg->besoin }} |
{{ $msg->read_at ? $msg->read_at->format('d/m/Y') : '—' }} |
Ouvrir |
@empty
| Aucun message. |
@endforelse
{{ $messages->links() }}
@endsection