@extends('blog.layout') @section('meta_title', '#'.$tag->name.' — '.config('app.name')) @section('content')

Tag: {{ $tag->name }}

@forelse($posts as $post)

{{ $post->title }}

{{ $post->published_at?->format('M j, Y') }}

@empty

No posts with this tag.

@endforelse
{{ $posts->links() }}
@endsection