分类

    @forelse($categories as $category)
  • {{ $category->name }} ({{ $category->post_count }})
  • @empty
  • 暂无分类
  • @endforelse

最新文章

    @forelse($recentPosts as $post)
  • {{ $post->title }}
  • @empty
  • 暂无文章
  • @endforelse

最新评论

    @forelse($recentComments as $comment)
  • {{ $comment->author_name }}:{{ Str::limit(strip_tags($comment->content), 20) }}
  • @empty
  • 暂无评论
  • @endforelse

标签

@forelse($hotTags as $tag) {{ $tag->name }} @empty 暂无标签 @endforelse

友情链接

    @forelse($links as $link)
  • {{ $link->name }}
  • @empty
  • 暂无链接
  • @endforelse

统计

  • 文章 {{ $blogStats['posts'] }} 篇
  • 评论 {{ $blogStats['comments'] }} 条
  • 标签 {{ $blogStats['tags'] }} 个