@extends('admin.layout.default') @section('content')
@if ($bestPlayer)

Mejor jugador actual

Nombre Avatar Equipo Juegos en Temporada Victorias en Temporada
{{ $bestPlayer->name }}
{{ $bestPlayer->team->name }} {{ $bestPlayer->season_games }} {{ $bestPlayer->season_wins }}
@endif

Registros

@foreach($players as $player) @endforeach
Nombre Avatar Equipo MVP Acciones
{{ $player->team->name }}
@endsection