@extends('layout.mainlayout') @section('content')
| # | Title | Message | Departments | URL | Created By | Created At |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $n->title }} | {{ $n->message }} | @if($n->departments === 'all') All Departments @else @php $deptNames = \App\Models\Department::whereIn('id', explode(',', $n->departments))->pluck('name')->toArray(); @endphp {{ implode(', ', $deptNames) }} @endif | @if($n->url) {{ $n->url }} @endif | {{ $n->createdBy->name ?? 'N/A' }} | {{ $n->created_at->format('d M Y, h:i A') }} |