@extends('front.layouts.app') @section('content')

Blogs

Blogs

Discover stories, insights, and updates from our vibrant campus community. Explore student experiences, academic achievements, and campus life.

@forelse($blogs as $blog)
@if ($blog->featured_image) {{ $blog->title }} @else No Image @endif @if ($blog->category)
{{ strtoupper($blog->category->name) }}
@endif
📅 {{ optional($blog->published_at)->format('M d, Y') }}

{{ $blog->title }}

{{ Str::limit(strip_tags($blog->excerpt ?? $blog->content), 120) }}

Read More →
@empty

No blogs found.

@endforelse
@endsection