modified: SRC/app/Http/Controllers/ReferentController.php
modified: SRC/app/Http/routes.php modified: SRC/public/js/ListeOeuvre.js modified: SRC/resources/views/referent.blade.php
This commit is contained in:
@ -25,8 +25,12 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach ($listeoeuvres as $listeoeuvre)
|
||||
@foreach ($listeoeuvres as $index => $listeoeuvre)
|
||||
@if ($index == 0)
|
||||
<tr class="active listeoeuvre">
|
||||
@else
|
||||
<tr class="listeoeuvre">
|
||||
@endif
|
||||
<form method="POST" role="form" action="deleteListeOeuvre">
|
||||
<input type="hidden" name="idUser" value="{{ $me->id }}">
|
||||
<input type="hidden" class="idListeOeuvre" name="idListeOeuvre" value="{{ $listeoeuvre->id }}">
|
||||
|
Reference in New Issue
Block a user