@extends('frontend.layouts.app') @section('title', $title) @section('description', $description) @section('content') @include('frontend.layouts.breadcrumb', ['title' => '#' . $tag->name])
Blog Tag

#{{ $tag->name }}

Latest news and updates tagged with "{{ $tag->name }}".

@forelse($news as $article)
@include('frontend.partials.news-card', ['article' => $article])
@empty

No articles found

No articles have been tagged with "{{ $tag->name }}" yet.

View All News
@endforelse
{{ $news->appends(request()->query())->links() }}
@include('frontend.partials.newsletter') @endsection