<?php \Laravel\Section::start('content'); ?>
	<h1><?php echo  $member->person_name . ' ' . $member->person_surname  ; ?> - [<?php echo  $member->year_id ; ?>]</h1>
	<br/>
	<table style="font-size:1.1em;">
		<tr height="35px">
			<td width="120px" class="notes">Αριθμός Μητρώου:</td>
			<td><strong><?php echo  HTML::link_to_route('person' , substr('0000' . $member->person_id, - 5), array($member->person_id)) ; ?><strong></td>
		</tr>
		<tr height="35px">
			<td width="120px" class="notes">Αρ.Μέλους:</td>
			<td><strong><?php echo  substr('0000' . $member->member_code, - 5) ; ?><strong></td>
		</tr>
		<tr height="35px">
			<td class="notes">e-mail:</td>
			<td><?php echo  $member->person_email_link ; ?></td>
		</tr>
		<tr height="35px">
			<td class="notes">χρέωση:</td>
			<td class="money"><?php echo  $member->member_debit ; ?></td>
		</tr>
		<tr height="35px">
			<td class="notes">πίστωση:</td>
			<td class="money"><?php echo  $member->member_credit ; ?></td>
		</tr>
		<tr height="35px">
			<td class="notes">υπόλοιπο:</td>
			<td class="money"><?php echo  $member->member_amount ; ?></td>
		</tr>
		<tr height="35px">
			<td class="notes">ιδιότητα μέλους</td>
			<td><?php echo  $member->status_label ; ?></td>
		</tr>
	</table>
	<br/>
	<span class="notes">τελευταία ενημέρωση <?php echo  $member->updated_at ; ?> - <?php echo  $member->updated_by ; ?></span>
	<br/>
	<p>
		<?php echo  HTML::link_to_route('members' , 'πίσω στον κατάλογο', array(), array('class'=>'button')) ; ?>
	</p>
	<br/>
<?php \Laravel\Section::stop(); ?>


<?php echo view('layouts.default')->with(get_defined_vars())->render(); ?>