
<?php \Laravel\Section::start('content'); ?>
	<h1>List of seasons</h1>
	<?php foreach($seasons as $season): ?>
		<li><?php echo  HTML::link_to_route('season' , $season->season_label . ' ' . $season->id , array( $season->id)) ; ?></li>   
	<?php endforeach; ?>
	<p><?php echo  HTML::link_to_route('new_season' , 'new season', array(), array('class'=>'button')) ; ?></p>
<?php \Laravel\Section::stop(); ?>

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