@extends('layouts.app')
@section('title','Consulta DXCC')
@section('content')
π Consulta DXCC
@if(!empty($erro))
β {{ $erro }}
@endif
@if(isset($result) && $result)
{{ $callsign }}
β resultado DXCC
@php
$campos = [
'country' => 'π³οΈ PaΓs',
'continent' => 'π Continente',
'cq_zone' => 'π‘ Zona CQ',
'itu_zone' => 'π» Zona ITU',
'latitude' => 'πΊοΈ Latitude',
'longitude' => 'πΊοΈ Longitude',
'gmt' => 'π GMT',
'principal' => 'π€ Prefixo Principal',
'prefix' => 'β
Prefixo Correspondente',
];
@endphp
@foreach($campos as $key => $label)
| {{ $label }} |
{{ $result[$key] ?? 'β' }}
|
@endforeach
@elseif(isset($callsign) && $callsign && empty($erro))
β οΈ Indicativo {{ $callsign }} nΓ£o encontrado no arquivo DXCC (cty.dat).
@endif
@endsection