@extends('layouts.app') @section('title','Notice Board') @section('content')

Notice Board

@foreach($notices as $notice)

{{ $notice->title }}

Audience: {{ $notice->audience ?? 'Public' }}

{{ $notice->message }}

{{ $notice->starts_at?->format('M d, Y') }} - {{ $notice->ends_at?->format('M d, Y') }}

@endforeach @endsection