
<?php \Laravel\Section::start('content'); ?>

	Are you sure you want to send the schedule for <?php echo  $training->tr_date ; ?> to the following recipients :
	<ul>
		<li>to: Coach</li>	
		<li>cc: Euroclub President</li>	
			<?php foreach($slots as $slot): ?>
				<?php if(!empty($slot->person_name)): ?> 
					<li>cc: <?php echo  $slot->person_name ; ?></li>
				<?php endif; ?>
			<?php endforeach; ?>
	</ul>

<span>
	<?php echo  HTML::link_to_route('send_trng' , 'send', array($slot->training_id), array('class'=>'button')) ; ?>
	<?php echo  HTML::link_to_route('training' , 'cancel', array($slot->training_id), array('class'=>'button')) ; ?>
</span>

<?php \Laravel\Section::stop(); ?>

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