@extends('blog.layouts.app') @section('title', $user["nickName"]) @section('content') Categories {{ $count }} page @foreach ($current as $category) / {{ $category['label'] }} @endforeach @foreach($tagOptions as $id => $tag) @if($tag['count'] < $count) {{ $tag['tag']->name }}({{ $tag['count'] }}) @endif @endforeach @foreach ($posts as $post) {{ $post->title }} @endforeach @endsection