|
|
|
@ -5,7 +5,7 @@
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-8 col-md-offset-2">
|
|
|
|
|
<div class="panel panel-default">
|
|
|
|
|
<div class="panel-heading">Dashboard</div>
|
|
|
|
|
<div class="panel-heading">Dashboard @if($type !== 'all') − <a href="<?php echo route('home'); ?>">Revenir à la liste</a>@endif</div>
|
|
|
|
|
|
|
|
|
|
<div class="panel-body">
|
|
|
|
|
@if (session('status'))
|
|
|
|
@ -36,7 +36,12 @@
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a href="<?php echo route('deals.view', ['type' => $type, 'id' => $deal->getId()]); ?>">Voir</a>
|
|
|
|
|
<a href="<?php echo route('deals.delete', ['type' => $type, 'id' => $deal->getId()]); ?>">Supprimer</a>
|
|
|
|
|
@if( $type === 'backup')
|
|
|
|
|
<form method="POST" action="<?php echo route('deals.delete', ['type' => $type, 'id' => $deal->getId()]); ?>">
|
|
|
|
|
{{ csrf_field() }}
|
|
|
|
|
<button type="submit">Supprimer</button>
|
|
|
|
|
</form>
|
|
|
|
|
@endif
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
@endforeach</tbody>
|
|
|
|
|