
<?php $__env->startSection('title'); ?>
@parent
Промоутеры
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
<div class="row">
  <div class="col-md-12">
		<h4>Промоутеры</h4>
		<div class="table-responsive">
			<table class="table table-striped table-hover">
				<thead>
					<th>ФИО</th>
					<th>Код</th>
					<th>Действия</th>
				</thead>
				<tbody>
					<?php foreach ($promoters as $promoter): ?>
					<tr>
						<td>
							<p>
								<b><?php echo $promoter->name; ?></b>
							</p>
						</td>
						<td>
							<p>
								<?php echo $promoter->code; ?>
							</p>
						</td>
						<td>
							<button class="btn btn-sm btn-default" onClick="location.href ='<?php echo action('PromotersController@edit', $promoter->id); ?>'">Редактировать</button>
							<button class="btn btn-sm btn-default action_confirm" type="button" data-method="delete" data-confirm-text="Вы уверены что хотите удалить промоутера" href="<?php echo action('PromotersController@destroy', $promoter->id); ?>">Удалить</button>
						</td>
					</tr>
					<?php endforeach; ?>
				</tbody>
			</table>
		</div>
		<button class="btn btn-primary" onClick="location.href ='<?php echo URL::to('promoters'); ?>/create'">Добавить промоутера</button>
	</div>
</div>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.default', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>