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

📌 Notice Board

@can('hr.manage') + Post Notice @endcan
@forelse ($notices as $notice) @php $isAck = $notice->acknowledgments->contains('user_id', auth()->id()); @endphp
{{ $notice->is_pinned ? '📌 ' : '' }}{{ $notice->title }}
{{ $notice->created_at->diffForHumans() }}

{{ $notice->body }}

— {{ $notice->poster->name }}

@if ($notice->requires_acknowledgment) @if ($isAck) You acknowledged this @else
@csrf
@endif @endif @can('hr.manage')
@csrf @method('DELETE')
@endcan
@empty

No notices right now.

@endforelse @endsection