@extends('layouts.admin')
@section('title', 'Messages')
@section('header', 'Messages')
@section('content')
| ID | Domaine | Type | Sujet | Statut | Tentatives | Date | Actions | |
|---|---|---|---|---|---|---|---|---|
| @if($message->canReplay() && $message->attempts < 3) @elseif($message->canReplay() && $message->attempts >= 3) @endif | {{ $message->id }} | {{ $message->domain->name ?? 'N/A' }} | {{ $message->payload_type ? ucfirst($message->payload_type) : '-' }} | {{ Str::limit($message->subject ?? 'No subject', 40) }} | {{ $message->attempts }}/{{ $message->max_attempts ?? 3 }} | {{ $message->created_at->format('d/m/Y H:i') }} | ||
| Aucun message trouvé | ||||||||