Skip to content

Commit

Permalink
Merge pull request #912 from eekdood/tag-hyperlink-fix
Browse files Browse the repository at this point in the history
fix links in tag list
  • Loading branch information
KodeStar authored Oct 31, 2022
2 parents 75014c8 + 1ac5eb6 commit dcc0f90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/tags/list.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -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']) !!}
Expand Down

0 comments on commit dcc0f90

Please sign in to comment.