@extends('admin.layout') @section('title', 'Messages contact') @section('content')

Messages contact

Demandes envoyees depuis le formulaire du site.

@forelse($messages as $msg) @empty @endforelse
Date Nom Email Besoin Lu
{{ $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
Aucun message.
{{ $messages->links() }}
@endsection