new table and button
This commit is contained in:
parent
755f691478
commit
7318ca6884
@ -7,25 +7,25 @@
|
|||||||
|
|
||||||
<div class="col-md-8">
|
<div class="col-md-8">
|
||||||
<button style="float: right" type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">Ajouter un référent</button>
|
<button style="float: right" type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">Ajouter un référent</button>
|
||||||
<table class="table table-hover">
|
<br><br>
|
||||||
|
<table class="table table-hover table-bordered">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr style="background-color: #F7BE81">
|
||||||
<td>Nom</td>
|
<td>Nom</td>
|
||||||
<td>Mail</td>
|
<td>Mail</td>
|
||||||
<td>Lieu</td>
|
<td>Lieu</td>
|
||||||
<td>Action</td>
|
<td>Se connecter</td>
|
||||||
|
<td>Supprimer</td>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@foreach ($users as $user)
|
@foreach ($users as $user)
|
||||||
<tr>
|
<tr style="background-color: #F6E3CE">
|
||||||
<td>{{$user->name}}</td>
|
<td>{{$user->name}}</td>
|
||||||
<td>{{$user->email}}</td>
|
<td>{{$user->email}}</td>
|
||||||
<td>Toulouse</td>
|
<td>Toulouse</td>
|
||||||
<td>
|
<td><a href="#" class="btn btn-sm btn-success"><span class="glyphicon glyphicon-ok"></span></a></td>
|
||||||
<button type="button" class="btn btn-default btn-sm">Se connecter</button>
|
<td><a href="#" class="btn btn-sm btn-danger"><span class="glyphicon glyphicon-trash"></span></a></td>
|
||||||
<button type="button" class="btn btn-warning btn-sm">Supprimer</button>
|
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
@endforeach
|
@endforeach
|
||||||
</tbody>
|
</tbody>
|
||||||
@ -79,4 +79,4 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@endsection
|
@endsection
|
||||||
|
Reference in New Issue
Block a user