@extends('layouts.default')

{{-- Web site Title --}}
@section('title')
@parent
Сайты проекта {{ $project->name }}
@stop

{{-- Content --}}
@section('content')
<div class="row">
  <div class="col-md-12">
		<h4>Сайты проекта {{ $project->name }}</h4>
		<div class="table-responsive">
			<table class="table table-striped table-hover">
				<thead>
				<th>ID</th>
				<th>Ссылка</th>
				<th>Действия</th>
				</thead>
				<tbody>
					@foreach ($project->sites as $site)
					<tr>
						<td>
							{{ $site->id }}
						</td>
						<td>
							<a target="_blank" href="//{{ $site->url }}">{{ $site->url }}</a>
						</td>
						<td>
							<button class="btn btn-sm btn-default" onClick="location.href ='{{ action('SitesController@edit', array($project->id, $site->id)) }}'">Редактировать</button>
							<button class="btn btn-sm btn-default action_confirm" type="button" data-method="delete" href="{{ action('SitesController@destroy', array($project->id, $site->id)) }}">Удалить</button>
						</td>
					</tr>
					@endforeach
				</tbody>
			</table>
		</div>
		<button class="btn btn-primary" onClick="location.href ='{{ URL::to('projects') }}/{{ $project->id }}/sites/create'">Добавить сайт</button>
	</div>
</div>
@stop
