@extends('layouts.app') @section('title', 'News - Uganda Innovation Portal') @section('content')

Latest News

Stay updated with the latest developments in Uganda's innovation ecosystem

@forelse($news as $article)
@if($article->featured_image) {{ $article->title }} @else
@endif
{{ $article->category }} @if($article->is_featured) Featured @endif
{{ $article->title }}

{{ $article->summary }}

{{ $article->author ?? 'Admin' }} {{ $article->published_at->diffForHumans() }}
{{ $article->reading_time }} min read Read More
@empty

No news articles found

Try adjusting your search criteria or check back later for new articles.

View All News
@endforelse
@if($news->hasPages())
{{ $news->links() }}
@endif
@endsection