@extends('layouts.default')

@section('title')
@parent
Промоутеры
@stop

@section('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>
					@foreach ($promoters as $promoter)
					<tr>
						<td>
							<p>
								<b>{{ $promoter->name }}</b>
							</p>
						</td>
						<td>
							<p>
								{{ $promoter->code }}
							</p>
						</td>
						<td>
							<button class="btn btn-sm btn-default" onClick="location.href ='{{ action('PromotersController@edit', $promoter->id) }}'">Редактировать</button>
							<button class="btn btn-sm btn-default action_confirm" type="button" data-method="delete" data-confirm-text="Вы уверены что хотите удалить промоутера" href="{{ action('PromotersController@destroy', $promoter->id) }}">Удалить</button>
						</td>
					</tr>
					@endforeach
				</tbody>
			</table>
		</div>
		<button class="btn btn-primary" onClick="location.href ='{{ URL::to('promoters') }}/create'">Добавить промоутера</button>
	</div>
</div>
@stop
