@extends('layouts.student') @section('title', 'Announcements') @section('content') @forelse($announcements as $a)

{{ $a->title }}

{{ optional($a->published_at)->format('d M Y') }} @if($a->priority === 'high')Important@endif

{!! nl2br(e($a->body)) !!}
@empty@endforelse{{ $announcements->links() }}
@endsection