@extends('layouts.frontend.master') @section('title', 'Notices - BAU 2001–2002 Alumni Association') @push('css') @endpush @section('content')

Notice Board ({{ $notices->count() }})

Stay updated with our latest notices.

@if($notices->count() > 0)
@foreach($notices as $notice)

{{ $notice->title }}

@if(isset($notice->description))

{{ Str::limit(strip_tags($notice->description), 150, '...') }}

@endif
Expires on: {{ \Carbon\Carbon::parse($notice->expiry_date)->format('M d, Y') }}
@endforeach
@else

No Notices Available

There are currently no active notices. Please check back later.

Back to Home
@endif
{{ $notices->links() }}
@endsection