@extends('admin.layouts.admin') @section('title', 'Détails du message - Admin KONTIXX') @section('page-title', 'Détails du message') @section('page-description', 'Informations complètes sur le message') @section('content')
{{-- HEADER AVEC BOUTON RETOUR --}}
Retour à la liste
{{-- INFORMATIONS EXPÉDITEUR --}}
{{ strtoupper(substr($contact->name, 0, 1)) }}

Expéditeur

Informations du contact

Nom

{{ $contact->name }}

@if($contact->phone)

Téléphone

{{ $contact->phone }}
@endif

Reçu le

{{ $contact->created_at->locale('fr')->isoFormat('dddd D MMMM YYYY') }}

{{ $contact->created_at->format('à HH:mm') }}

{{-- TYPE DE PROJET --}}

Type de projet

Catégorie du projet

{{ ucfirst($contact->project_type) }}
{{-- MESSAGE --}}

Message

Contenu du message

{{ $contact->message }}

{{-- ACTIONS --}}

Actions

@csrf
@csrf @method('DELETE')

Statut

{{ $contact->is_read ? 'Lu' : 'Non lu' }}
@endsection