@extends('layouts.app') @section('title', $category->name) @section('meta_description', $category->meta_description ?? 'Latest ' . $category->name . ' news from AIT Broadcasting Network') @section('content')
{{-- MAIN COLUMN --}}
{{-- CATEGORY HEADER --}}
Section

{{ $category->name }}

@if($category->description)

{{ $category->description }}

@endif
{{-- ARTICLES GRID --}} @if($articles->count() > 0) {{-- PAGINATION --}}
{{ $articles->links() }}
@else
No articles found in this category yet.
Back to homepage
@endif
{{-- SIDEBAR --}} @include('partials.sidebar')
@endsection