@extends('layouts.admin') @section('title', 'Messages') @section('header', 'Messages') @section('content')
@if(request('period') === 'custom') @endif
@forelse($messages as $message) @empty @endforelse
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) }} {{ ucfirst($message->status) }} {{ $message->attempts }}/{{ $message->max_attempts ?? 3 }} {{ $message->created_at->format('d/m/Y H:i') }}
@if($message->canReplay())
@csrf
@endif
Aucun message trouvé
@if($messages->hasPages())
{{ $messages->links() }}
@endif
@endsection