@extends('layouts.app', ['title' => 'System | Laufende Nachrichten']) @section('content') @php $departments = \App\Models\Department::where('is_deleted', 0)->orderBy('name')->get(); @endphp
| TITEL | NACHRICHT | ABTEILUNG | GÜLTIG BIS | STATUS | |
|---|---|---|---|---|---|
| {{ $n->news_title }} | @if($n->for_all) Alle @else {{ $departments->firstWhere('department_id', $n->fk_department_id)?->name ?? '—' }} @endif | {{ $n->valid_until ? \Carbon\Carbon::parse($n->valid_until)->format('d.m.Y') : '—' }} | @if($n->is_active && !$expired) Aktiv @else Inaktiv @endif |
|