@extends('layouts.app') @section('title', 'OnAPB - Inicio') @section('styles') @endsection @section('content')

Cobertura Exclusiva.

VER TODO
@foreach($noticias as $n)
{{ $n->titulo }}
{{ $n->categoria ?? 'Media' }}

{{ $n->titulo }}

{{ Str::limit(strip_tags($n->contenido), 120) }}

@endforeach @if($noticias->isEmpty())

No hay noticias recientes.

@endif

Tablas Live

CENTRO DE ESTADÍSTICAS

Datos actualizados en tiempo real según los últimos informes arbitrales.

Próximos Partidos

VER CALENDARIO COMPLETO
@if(count($eventos) === 0)

No hay eventos activos.

@else
@php $eventosList = is_array($eventos) ? $eventos : $eventos->toArray(); @endphp @foreach(array_slice($eventosList, 0, 6) as $e)
@if($e['estado'] === 'Activo') En Vivo @else {{ $e['estado'] }} @endif {{ \Carbon\Carbon::parse($e['fecha_evento'])->translatedFormat('d M') }}

{{ $e['nombre_evento'] ?? ($e['clubLocal']['nombre'] . ' vs ' . $e['clubVisitante']['nombre']) }}

{{ $e['sede'] ?? 'TBD' }}

VER FICHA TÉCNICA
@endforeach
@endif

Beneficios Premium

@if($promociones->isEmpty())

Sin promociones activas.

@else
@foreach($promociones->take(3) as $p)
{{ $p->nombre }}
{{ $p->categoria }}

{{ $p->nombre }}

{{ $p->descripcion }}

SOLICITAR BENEFICIO
@endforeach
@endif
@endsection