@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 --}}
{{-- 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))
| ID |
Call Sent |
Data/Hora |
Band |
Mode |
Exch Sent |
Exch Rcvd |
Confirmado |
@foreach($regs as $r)
| {{ $r->id }} |
{{ $r->call_sent }} |
{{ $r->date_time }} |
{{ $r->band }} |
{{ $r->category_mode }} |
{{ $r->exch_sent }} |
{{ $r->exch_rcvd }}
|
{{ $r->confirmado ?? '—' }}
|
@endforeach
@endforeach
@endif
{{-- Seção: com exatamente 1 registro (só lista os callsigns) --}}
@if(count($comUmRegistro) > 0)
Callsigns com exatamente 1 registro
({{ count($comUmRegistro) }})
| # |
Call Rcvd |
Call Sent |
Data/Hora |
Band |
Mode |
Exch Rcvd |
Confirmado |
@php $idx = 1; @endphp
@foreach($comUmRegistro as $rcvd => $regs)
@php $r = $regs[0]; @endphp
| {{ $idx++ }} |
{{ $rcvd }} |
{{ $r->call_sent }} |
{{ $r->date_time }} |
{{ $r->band }} |
{{ $r->category_mode }} |
{{ $r->exch_rcvd }} |
{{ $r->confirmado ?? '—' }}
|
@endforeach
@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