@extends('app')
@section('titulo', $player ? $player['name'] : 'Buscar Jugador')
@section('styles')
@endsection
@section('content')
← Volver a Buscador
@if($error ?? null)
⚠️ {{ $error }}
@endif
@if($player)
@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