Merge pull request #912 from eekdood/tag-hyperlink-fix
fix links in tag list
This commit is contained in:
commit
dcc0f90b23
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@
|
|||
@foreach($apps as $app)
|
||||
<tr>
|
||||
<td>{{ $app->title }}</td>
|
||||
<td><a{{ $app->target }} href="{{ url('tag/'.$app->link) }}">{{ $app->link }}</a></td>
|
||||
<td><a{{ $app->target }} href="{{ url($app->link) }}">{{ $app->link }}</a></td>
|
||||
<td class="text-center"><a href="{!! route('tags.edit', [$app->id]) !!}" title="{{ __('app.settings.edit') }} {!! $app->title !!}"><i class="fas fa-edit"></i></a></td>
|
||||
<td class="text-center">
|
||||
{!! Form::open(['method' => 'DELETE','route' => ['tags.destroy', $app->id],'style'=>'display:inline']) !!}
|
||||
|
|
Loading…
Reference in a new issue