@extends('layouts.app') @section('content')
Create Tag
{{ csrf_field() }}

Created Tags

@if($tags->count() > 0) @foreach($tags as $tag) @endforeach
Name Action [D] Action [E] All
{{ $tag->name }} {{ $tag->posts()->count() }}
@else

There is no Category.

If you want to create a new post, you must first create a Category.

@endif
@endsection