1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-19 15:11:40 +02:00

Linkify short URLs on dashboard to allow copy/paste

This commit is contained in:
overint 2016-09-17 13:12:54 +10:00
parent f125665217
commit 1063c9b244

View File

@ -15,9 +15,9 @@
<tr>
<td>
@if (!empty($link->secret_key))
{{$link->short_url}}/{{$link->secret_key}}
<a href="{{ url($link->short_url . '/' . $link->secret_key) }}">{{$link->short_url}}/{{$link->secret_key}}</a>
@else
{{$link->short_url}}
<a href="{{ url($link->short_url) }}">{{$link->short_url}}</a>
@endif
</td>