@extends('layouts.app') @section('title','Call Rcvd Sem LOG') @section('content') @include('components.seletor-contest')

📋 Call Rcvd Sem LOG

Indicativos que aparecem como call_rcvd em qsos_result mas não enviaram LOG (ausentes em logs_cabecalhos).

{{-- Totais --}}
{{ number_format($totalSemLogs) }}
Total Callsigns Sem LOG
{{ number_format($totalMaisDeUm) }}
Com mais de 1 registro
{{ number_format($totalUmRegistro) }}
Com exatamente 1 registro
{{-- Busca --}}
@if($busca) ✕ Limpar @endif
{{-- Seção: com mais de 1 registro (listados com detalhes) --}} @if(count($comMaisDeUm) > 0)

Callsigns com mais de 1 registro ({{ count($comMaisDeUm) }})

@foreach($comMaisDeUm as $rcvd => $regs)
{{ $rcvd }} ({{ count($regs) }} registro(s))
@foreach($regs as $r) @endforeach
ID Call Sent Data/Hora Band Mode Exch Sent Exch Rcvd Confirmado
{{ $r->id }} {{ $r->call_sent }} {{ $r->date_time }} {{ $r->band }} {{ $r->category_mode }} {{ $r->exch_sent }} {{ $r->exch_rcvd }} {{ $r->confirmado ?? '—' }}
@endforeach @endif {{-- Seção: com exatamente 1 registro (só lista os callsigns) --}} @if(count($comUmRegistro) > 0)

Callsigns com exatamente 1 registro ({{ count($comUmRegistro) }})

@php $idx = 1; @endphp @foreach($comUmRegistro as $rcvd => $regs) @php $r = $regs[0]; @endphp @endforeach
# Call Rcvd Call Sent Data/Hora Band Mode Exch Rcvd Confirmado
{{ $idx++ }} {{ $rcvd }} {{ $r->call_sent }} {{ $r->date_time }} {{ $r->band }} {{ $r->category_mode }} {{ $r->exch_rcvd }} {{ $r->confirmado ?? '—' }}
@endif @if($totalSemLogs === 0)

✅ Todos os CALL_RCVD estão presentes em logs_cabecalhos!

@else
Total de callsigns sem LOG: {{ $totalSemLogs }}  ({{ $totalMaisDeUm }} com +1 registro | {{ $totalUmRegistro }} com 1 registro)
@endif @endsection