@extends('app') @section('titulo', $player ? $player['name'] : 'Buscar Jugador') @section('styles') @endsection @section('content') ← Volver a Buscador @if($error ?? null)
⚠️ {{ $error }}
@endif @if($player)
👤
{{ $player['name'] }}
{{ $player['tag'] }}
🏆 {{ $player['trophies'] ?? 0 }}
Trofeos
⭐ {{ $player['expLevel'] ?? 1 }}
Nivel
📈 {{ $player['bestTrophies'] ?? 0 }}
Récord
✅ {{ $player['wins'] ?? 0 }}
Victorias
❌ {{ $player['losses'] ?? 0 }}
Derrotas
🤝 {{ $player['draws'] ?? 0 }}
Empates
@if($clan)
🏰 Clan: {{ $clan['name'] }}
Etiqueta
{{ $clan['tag'] }}
👥 Miembros
{{ $clan['members'] }}/50
🏆 Trofeos
{{ number_format($clan['clanScore'] ?? 0) }}
⚔️ Guerra
{{ $clan['clanWarTrophies'] ?? 0 }}
📊 Nivel
{{ $clan['clanLevel'] ?? 'N/A' }}
📍 Ubicación
{{ $clan['location']['name'] ?? 'Global' }}
@if(!empty($clan['description']))
Descripción
{{ $clan['description'] }}
@endif
@else
👤 Este jugador no está en ningún clan
@endif @endif @endsection