tag.blade.php 562 B

1234567891011121314151617
  1. <div class="panel panel-default">
  2. <div class="panel-heading">
  3. <h3 class="panel-title">标签</h3>
  4. </div>
  5. <div class="panel-body">
  6. @inject('tagPresenter', 'App\Presenters\TagPresenter')
  7. <?php $tagList = $tagPresenter->tagList();?>
  8. @if ($tagList)
  9. @foreach ($tagList as $tl)
  10. <span style="padding: 5px;">
  11. <a href="{{ route('tag', ['id' => $tl->id]) }}" target="_blank">{{ $tl->tag_name }}</a>
  12. </span>
  13. @endforeach
  14. @endif
  15. </div>
  16. </div>