2015-02-22 09:19:32 -06:00
|
|
|
<table class="table table-striped table-bordered">
|
|
|
|
<tr>
|
|
|
|
<th> </th>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Last activity</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td> </td>
|
|
|
|
<td><a href="{{route('categories.noCategory')}}"><em>Without a category</em></a></td>
|
|
|
|
<td> </td>
|
|
|
|
</tr>
|
|
|
|
@foreach($categories as $category)
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="btn-group btn-group-xs">
|
2015-03-21 15:33:52 -05:00
|
|
|
<a href="{{route('categories.edit',$category->id)}}" class="btn btn-default btn-xs"><i class="fa fa-fw fa-pencil"></i></a>
|
|
|
|
<a href="{{route('categories.delete',$category->id)}}" class="btn btn-danger btn-xs"><i class="fa fa-fw fa-trash-o"></i></a>
|
2015-02-22 09:19:32 -06:00
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a href="{{route('categories.show',$category->id)}}" title="{{{$category->name}}}">{{{$category->name}}}</a>
|
|
|
|
</td>
|
|
|
|
<td>
|
2015-03-04 02:42:47 -06:00
|
|
|
@if($category->lastActivity)
|
|
|
|
{{$category->lastActivity->format('jS F Y')}}
|
|
|
|
@else
|
2015-02-22 09:19:32 -06:00
|
|
|
<em>Never</em>
|
2015-03-04 02:42:47 -06:00
|
|
|
@endif
|
2015-02-22 09:19:32 -06:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|