1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-20 07:31:53 +02:00
polr/resources/views/snippets/link_table.blade.php
2015-12-11 23:34:34 -05:00

20 lines
491 B
PHP

<table class="table table-hover">
<tr>
<th>Link Ending</th>
<th>Long Link</th>
<th>Clicks</th>
<th>Date</th>
<th>Secret</th>
</tr>
@foreach ($links as $link)
<tr>
<td>{{$link->short_url}}</td>
{{-- TODO truncate long link --}}
<td>{{$link->long_url}}</td>
<td>{{$link->clicks}}</td>
<td>{{$link->created_at}}</td>
<td>{{isset($link->secret_key)}}</td>
</tr>
@endforeach
</table>