@extends('layouts.app') @section('title', 'Tags') @section('page-title', 'Tags') @section('breadcrumb', 'Classification / Tags') @section('content')
Back

Tags

Create and manage tags to classify contents.

Create Tag
@if(request('sort')) @endif
@if($tags->count())
@foreach($tags as $tag) @endforeach
Title Visibility Description Created Actions
{{ $tag->name }} {{ $tag->visibilityLabel() }} {{ $tag->description ?? '—' }} {{ $tag->created_at->format('M d, Y') }}
@csrf @method('DELETE')
{{ $tags->links() }}
@else

Start creating tags

Create tags to classify your contents.

Create Tag
@endif
@endsection