@extends('layouts.admin') @section('page_title', 'Announcements') @section('content')

Company Announcements

Broadcast important updates and notifications to all employees.

campaign New Announcement
@foreach ($announcements as $anc) @endforeach
# 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' }}
edit
@csrf @method('DELETE')

Showing 1-{{ count($announcements) }} announcements

@endsection @push('styles') @endpush @push('scripts') @endpush