5 热议话题如何调用

请先 登录 后评论

最佳答案 2017-06-20 10:00

抄首页的逻辑即可。

找到:tipaskx/app/Http/Controllers/IndexController.php 

        /*热门话题*/
        $hotTags =  Taggable::globalHotTags();

设置输出变量:

        return view('theme::home.index')->with(compact('hotTags','topCoinUsers','friendshipLinks'));

最后view层模板显示即可:
            <div class="widget-box">
                <h2 class="h4 widget-box-title">热议话题 <a href="{{ route('website.topic') }}" title="更多">»</a></h2>
                <ul class="taglist-inline multi">
                    @foreach($hotTags as $hotTag)
                        <li class="tagPopup"><a class="tag" data-toggle="popover"  href="{{ route('ask.tag.index',['id'=>$hotTag->tag_id]) }}" target="_blank">{{ $hotTag->name }}</a></li>
                    @endforeach
                </ul>
            </div>

tipask整个框架是基于laravel5.1的,详细的开发文档参见laravel文档 :)




请先 登录 后评论

其它 0 个回答

  • 1 关注
  • 1 收藏,4145 浏览
  • 含忆 提出于 2017-06-12 16:37

相似问题