@extends('layouts.app') @section('title', 'Tabla de Posiciones - ' . $torneo->nombre) @section('content')
{{ $torneo->nombre }} ({{ $torneo->fecha_inicio->format('Y') }})
@if(count($grupos) > 0)| # | Equipo | PJ | PG | PP | TF | TC | DIF | PTS |
|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} |
@if(session('user_logged_in'))
@php $isFollowing = in_array($s['id'], $followedTeamIds); @endphp
@endif
{{ $s['nombre'] }}
{{-- Only show base category if different from group name --}}
@if($s['categoria'] != $groupName)
{{ $s['categoria'] }}
@endif
|
{{ $s['pj'] }} | {{ $s['pg'] }} | {{ $s['pp'] }} | {{ $s['tf'] }} | {{ $s['tc'] }} | {{ ($s['tf'] - $s['tc']) > 0 ? '+' : '' }}{{ $s['tf'] - $s['tc'] }} | {{ $s['pts'] }} |
Aún no se han registrado resultados en este torneo.