@extends('admin.partial.template-full') @section('section')

Hashtags


@foreach($hashtags as $tag) @endforeach
# Hashtag Status Count NSFW Banned Created
{{$tag->id}} {{$tag->name}} {{$tag->posts()->count()}} {{$tag->is_nsfw ? 'true' : 'false'}} {{$tag->is_banned ? 'true' : 'false'}} {{$tag->created_at->diffForHumans()}}
{{$hashtags->links()}}
@endsection