@extends('layouts.app') @section('title', 'Tags') @section('page-title', 'Tags') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($tags as $tag) @empty @endforelse
Name Slug Color Status Actions
{{ $tag->name }} {{ $tag->slug }} @if($tag->color)    {{ $tag->color }} @endif @if($tag->status==='active') Active @else Inactive @endif
@csrf @method('DELETE')
No tags found
{{ $tags->withQueryString()->links() }}
@endsection