@extends('layouts.app') @section('title', $region->name . ' News') @section('meta_description', 'Latest ' . $region->name . ' news from AIT Broadcasting Network') @section('content')
{{-- MAIN COLUMN --}}
{{-- REGION HEADER --}}
Region

{{ $region->flag_emoji }} {{ $region->name }} News

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