@extends('layouts.app') @section('title', 'Portal Futebol Americano Brasil - NFL, Notícias e Estatísticas') @section('description', 'O melhor portal brasileiro de futebol americano. Acompanhe notícias da NFL, estatísticas de times e jogadores, calendário de jogos e muito mais.') @section('content')

Futebol Americano
Made in Brazil

Seu portal completo de NFL em português. Notícias, estatísticas, análises e tudo que você precisa saber sobre futebol americano.

Ver Notícias Times NFL
@if($featuredNews->count() > 0)

Notícias em Destaque

Ver Todas
@foreach($featuredNews as $news)
@if($news->image_url) {{ $news->title }} @endif
{{ ucfirst($news->category) }}
{{ $news->title }}

{{ $news->excerpt }}

{{ $news->published_at->diffForHumans() }} {{ $news->views_count }}
@endforeach
@endif

Próximos Jogos

@if($upcomingGames->count() > 0) @foreach($upcomingGames as $game)
{{ $game->awayTeam->name }}
{{ $game->awayTeam->abbreviation }}
VS
{{ $game->game_date->format('d/m') }}
{{ $game->game_time->format('H:i') }}
{{ $game->homeTeam->name }}
{{ $game->homeTeam->abbreviation }}
@endforeach @else

Nenhum jogo programado.

@endif

Resultados Recentes

@if($recentGames->count() > 0) @foreach($recentGames as $game)
{{ $game->awayTeam->name }}
{{ $game->away_score }}
FINAL
{{ $game->game_date->format('d/m/Y') }}
{{ $game->homeTeam->name }}
{{ $game->home_score }}
@endforeach @else

Nenhum resultado disponível.

@endif

Últimas Notícias

Ver Todas
@foreach($recentNews->take(6) as $news)
@if($news->image_url) {{ $news->title }} @endif
{{ ucfirst($news->category) }}
{{ Str::limit($news->title, 60) }}

{{ Str::limit($news->summary, 80) }}

@endforeach
@if($popularTeams->count() > 0)

Times da NFL

@foreach($popularTeams as $team) @endforeach
@endif

Portal em Números

32
Times NFL
{{ $recentNews->count() }}
Notícias
{{ $upcomingGames->count() + $recentGames->count() }}
Jogos
2024
Temporada
@endsection