@extends('blank') @section('content')
{{ $config->asociacion }}
{{ $config->fecha_fundacion }}
Gestión {{ date('Y') }}
@if ($club->url_img) @else @endif
CLUB: {{ $equipo->club->nombre }}
Fecha de Fundación: {{ date('d/m/Y',strtotime($equipo->club->fecha_fundacion)) }}
DIVISIÓN: {{ $equipo->categoria->division->nombre }}
CATEGORÍA: {{ $equipo->categoria->nombre }} {{ $equipo->categoria->genero }}
{{ $equipo->nombre }}
NÓMINA DE JUGADORES
@foreach ($jugadores as $item) @endforeach
N. KARDEX APELLIDOS Y NOMBRES C.I. F. DE NAC.
{{ ++$i }} {{ $item->kardex }} {{ $item->nombres }} {{ $item->apellidos }} {{ $item->ci }} {{ $item->expedido }} {{ date('d/m/Y',strtotime($item->fecha_nacimiento)) }}
DIRECTORIO DEL CLUB
@foreach ($club->directorios as $item) @endforeach
NOMBRE C.I. CARGO TELÉFONO
{{ $item->nombres }} {{ $item->ci }} {{ $item->cargo->nombre }} {{ $item->telefono }}
@endsection @section('scripts') @endsection