Files
bappli-jurassic-land/resources/views/paddock/list.blade.php
Benjamin Sigonneau 6a57222caf Edit paddock name and state.
TODO: keep track of paddock openings.
2020-04-17 09:57:10 +02:00

46 lines
1.1 KiB
PHP

@extends('paddock.layout')
@section('content')
@if (count($paddocks) > 0)
<div>
<a href="{{ route('paddocks.create') }}">Ajouter un enclos</a>
</div>
<br>
<table class="table table-bordered" id="laravel_crud">
<thead>
<tr>
<th>Id</th>
<th>Nom</th>
<th>État</th>
<th colspan="2">Actions</th>
</thead>
<tbody>
@foreach($paddocks as $paddock)
<tr>
<td>{{ $paddock->id }}</td>
<td>{{ $paddock->name }}</td>
<td>{{ $paddock->isClosed ? 'Fermé' : 'Ouvert' }}</td>
<td>
<a href="{{ route('paddocks.edit', $paddock->id)}}">Éditer</a>
</td>
<td>
<form action="{{ route('paddocks.destroy', $paddock->id)}}" method="post">
{{ csrf_field() }}
@method('DELETE')
<button type="submit">Supprimer</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
{!! $paddocks->links() !!}
@else
<div><p>Aucun enclos dans ce parc.</p></div>
<div><a href="{{ route('paddocks.create') }}">Ajouter un enclos</a></div>
@endif
@endsection