@extends('layouts.admin') @section('page_title', 'Announcements') @section('content')
Broadcast important updates and notifications to all employees.
| # | Title | Published | Expires | Status | Action |
|---|---|---|---|---|---|
| {{ str_pad($loop->iteration, 2, '0', STR_PAD_LEFT) }} | {{ $anc->title }} | {{ $anc->created_at->format('d M, Y') }} | {{ $anc->expires_at ? $anc->expires_at->format('d M, Y') : 'Never' }} | @if ($anc->is_active) ACTIVE @else DRAFT @endif {{ $anc->is_active ? 'Active' : 'Draft' }} |
Showing 1-{{ count($announcements) }} announcements