@extends('layouts.frontend')
@section('title', 'Tag: ' . $tag->name . ' - Blog - ' . setting('site_name'))
@section('meta_description', 'Posts tagged with: ' . $tag->name)
@section('content')
Blog Tag: {{ $tag->name }}
@if($posts->isEmpty())
No blog posts found with this tag.
@else
@foreach($posts as $post)
@include('blog::frontend.partials._post_card', ['post' => $post]) {{-- Assuming you create a partial --}}
@endforeach
{{ $posts->links() }}
@endif
@endsection