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

	<h1><?php echo  $slot->pr_date . ' ' . $slot->pr_time . '  : ' . $slot->person_id  ; ?></h1>

<span>
	<?php echo  HTML::link_to_route('slots' , 'Slots', array(),array('class'=>'button')) ; ?> 
	<?php echo  HTML::link_to_route('edit_slot' , 'Edit', array($slot->id), array('class'=>'button')) ; ?>
	<?php echo  Form::open('slot/delete', 'DELETE', array('style' => 'display:inline ;' )) ; ?>
	<?php echo  Form::hidden('id', $slot->id) ; ?>
	<?php echo  Form::submit('delete' , array( 'class' => 'button')) ; ?>
	<?php echo  Form::close(); ?>
</span>

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


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