@extends('layouts.app')
@section('title','Relatório — Operadores e Clubes')
@section('content')
@include('components.seletor-contest')
{{ $groupName }}
{{ count($clubes) }} clube(s)
@foreach($clubes as $clubNome => $info)
@php
if (strtoupper($groupName)==='BRAZIL' && strtoupper(substr(trim($clubNome),0,5))==='LABRE') continue;
@endphp
{{ $clubNome }}
Total: {{ number_format($info['club_total']) }}
| Callsign | Pontos |
M1 | M2 | M3 |
Final Score |
@php $totP=$totM1=$totM2=$totM3=$totF=0; @endphp
@foreach($info['calls'] as $c)
@php $totP+=$c->total_pontos; $totM1+=$c->total_m1; $totM2+=$c->total_m2; $totM3+=$c->total_m3; $totF+=$c->final_score; @endphp
| {{ $c->call_sent }} |
{{ number_format($c->total_pontos) }} |
{{ $c->total_m1 }} |
{{ $c->total_m2 }} |
{{ $c->total_m3 }} |
{{ number_format($c->final_score) }} |
@endforeach
| TOTAL |
{{ number_format($totP) }} |
{{ $totM1 }} | {{ $totM2 }} | {{ $totM3 }} |
{{ number_format($totF) }} |
@endforeach
@empty
Nenhum dado encontrado.
@endforelse
@endsection