@extends('layouts.app') @section('title', 'News and Events - ' . (\App\Models\HeaderSetting::first()?->site_name ?? 'Barishal Cantonment Public School & College')) @section('content')
{{-- Page Header --}}

NEWS AND EVENTS

{{-- News List --}} @if($newsEvents->count() > 0) @foreach($newsEvents as $news)
{{-- Image Column --}}
@if($news->image) {{ $news->title }} @else
@endif
{{-- Content Column --}}
{{ $news->title }}
{{ $news->published_at->format('F j, Y') }}
@if($news->excerpt)

{{ Str::limit($news->excerpt, 200) }}

@endif Read more
@endforeach {{-- Pagination --}} @if($newsEvents->hasPages())
{{ $newsEvents->links() }}
@endif @else

No news events available at the moment.

@endif
@endsection