Commit 0eb211bc authored by Nicolas Widart's avatar Nicolas Widart

Adding more user info

parent 421b649c
......@@ -30,7 +30,9 @@
<thead>
<tr>
<th>Created at</th>
<th>Name</th>
<th>First name</th>
<th>Last name</th>
<th>Email</th>
<th>Actions</th>
</tr>
</thead>
......@@ -48,6 +50,16 @@
{{ $user->first_name }}
</a>
</td>
<td>
<a href="{{ URL::route('dashboard.user.edit', [$user->id]) }}">
{{ $user->last_name }}
</a>
</td>
<td>
<a href="{{ URL::route('dashboard.user.edit', [$user->id]) }}">
{{ $user->email }}
</a>
</td>
<td>
<div class="btn-group">
<a href="{{ URL::route('dashboard.user.edit', [$user->id]) }}" class="btn btn-default btn-flat"><i class="glyphicon glyphicon-pencil"></i></a>
......@@ -61,7 +73,9 @@
<tfoot>
<tr>
<th>Created at</th>
<th>Name</th>
<th>First name</th>
<th>Last name</th>
<th>Email</th>
<th>Actions</th>
</tr>
</tfoot>
......@@ -86,6 +100,8 @@
"bInfo": true,
"bAutoWidth": true,
"aoColumns": [
null,
null,
null,
null,
{ "bSortable": false }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment