@extends('layouts.master') @section('title', $tag->seo_title) @section('meta_description', $tag->seo_description) @section('canonical', route('blog.tag', $tag)) @section('content')

Blog Tag

{{ $tag->name }}

{{ $tag->description ?: 'Browse articles tagged with ' . $tag->name . '.' }}

@forelse($posts as $post)
@include('frontend.blog.partials.card')
@empty
No posts found for this tag.
@endforelse
{{ $posts->links() }}
@include('frontend.blog.partials.sidebar')
@endsection