@extends('layouts.student') @section('title','Notices') @section('breadcrumb')@endsection @section('student-content')

Notices

@forelse($notices as $notice)
{{ $notice->title }}
{{ ucfirst($notice->visible_to) }} {{ $notice->created_at->diffForHumans() }}

{{ $notice->content }}

@if($notice->expires_at)Expires: {{ $notice->expires_at->format('d M Y') }}@endif
@empty
No notices available.
@endforelse {{ $notices->links() }} @endsection