@layout('layouts.grid') @section('content')

Οι αθλητές του Ομίλου το {{ Session::get('year')['year_label'] }}

@foreach($athletes as $athlete) @endforeach
Αρ.Δελτίου Ονομα Αθλημα e-mail Ημ. Γέννησης Ιατρ. εξέταση Ιατρ. βεβαίωση status
{{ HTML::link_to_route('athlete' , '', array($athlete->athlete_id), array( 'class'=>'show', 'alt'=>'show', 'title'=>'προβολή')) }} {{ HTML::link_to_route('edit_athlete', '', array($athlete->athlete_id), array( 'class'=>'upd', 'alt'=>'upd', 'title'=>'αλλαγή')) }} {{ HTML::link_to_route('confirm_athlete', '', array($athlete->athlete_id), array( 'class'=>'del', 'alt'=>'del', 'title'=>'διαγραφή')) }} {{ $athlete->federation_id }} {{ $athlete->person_name . ' ' . $athlete->person_surname }} {{ $athlete->section_label }} @if(Session::get('user')['id'] > 0) {{ $athlete->person_email_link }} @else * * * * * * * @endif @if(Session::get('user')['id'] > 0) {{ $athlete->person_birthday}} @else * * * * * * * @endif @if(Session::get('user')['id'] > 0) {{ $athlete->medical_date}} @else * * * * * * * @endif @if(Session::get('user')['id'] > 0) {{ $athlete->medical_ok }} @else * * * * * * * @endif {{ $athlete->status_label }}
@endsection