@extends('layouts.app') @section('title','Exchange Inválidos') @section('content') @include('components.seletor-contest')

🔄 Exchange Inválidos

QSOs cujo exch_sent ou exch_rcvd não existe na tabela exchange. Agrupado por call_sent.

{{ number_format($totalRegistros) }}
Registros com Exchange Inválido
{{ number_format($totalOperadores) }}
Operadores
{{-- Legenda --}}
vermelho = valor inválido (ausente na tabela exchange) Flags: valid_qso / valid_exchange / confirmado
{{-- Busca --}}
@if($busca) ✕ Limpar @endif
@forelse($grupos as $callSent => $regs)
Call Sent: {{ $callSent }} {{ count($regs) }} registro(s)
@foreach($regs as $r) @endforeach
ID Call Sent Call Rcvd Exch Sent Exch Rcvd Data/Hora Banda V.QSO V.Exch Conf. Motivo
{{ $r->id }} {{ $r->call_sent }} {{ $r->call_rcvd }} {{ $r->exch_sent }} @if($r->sent_invalido) ⚠️ @endif {{ $r->exch_rcvd }} @if($r->rcvd_invalido) ⚠️ @endif {{ $r->date_time }} {{ $r->band }} {{ $r->valid_qso ?? '—' }} {{ $r->valid_exchange ?? '—' }} {{ $r->confirmado ?? '—' }} {{ $r->motivo ?? '' }}
Total para {{ $callSent }}: {{ count($regs) }} registro(s)
@empty

✅ Nenhum QSO com exchange inválido encontrado.

@endforelse @if($totalRegistros > 0)
Total de registros sem Exch Sent ou Exch Rcvd encontrado: {{ number_format($totalRegistros) }}
@endif @endsection