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

Το Μητρώο του ομίλου

@foreach($persons as $person) @endforeach
{{ HTML::link_to_route('new_person' , '', null, array( 'class'=>'add button-small', 'alt'=>'νεο', 'title'=>'νέα εγγραφή')) }} Α.Μ. όνομα email τηλέφωνο 1 τηλέφωνο 2 κινητό διεύθυνση ημ. γενν.
{{ HTML::link_to_route('person' , '', array($person->id), array( 'class'=>'show button-small', 'alt'=>'show', 'title'=>'show details')) }} {{ HTML::link_to_route('edit_person' , '', array($person->id), array( 'class'=>'upd button-small', 'alt'=>'upd', 'title'=>'update')) }} {{ HTML::link_to_route('confirm_person' , '', array($person->id), array( 'class'=>'del button-small', 'alt'=>'del', 'title'=>'delete')) }} {{ substr('00000' . $person->id, -5) }} {{ $person->person_surname . ' ' . $person->person_name }} {{ HTML::mailto($person->person_email,$person->person_email)}} {{ $person->person_phone}} {{ $person->person_phone_off}} {{ $person->person_mobile}} {{ $person->person_address }}
{{ $person->person_pcode }}
{{ $person->person_birthday}}
@endsection