<?php

$tabs = array(
		'' 		=> Lang::get('core.tab_siteinfo'),
		'email'			=> Lang::get('core.tab_email'),
		'security'		=> Lang::get('core.tab_loginsecurity') ,
		'translation'	=> 'Translation',
		'log'			=> Lang::get('Clear Cache & Logs')
	);

?>

<ul class="nav nav-tabs" >
<?php foreach($tabs as $key=>$val): ?>
	<li  <?php if($key == $active): ?> class="active" <?php endif; ?>><a href="<?php echo e(URL::to('abserve/config/'.$key)); ?>"> <?php echo e($val); ?>  </a></li>
<?php endforeach; ?>

</ul>