@extends('layouts.app') @section('title', $notice->title) @section('breadcrumbs') @endsection @section('content')
{{-- Notice Card --}}
{{-- Badges --}}
@if($notice->is_pinned) Pinned @endif {{ $notice->type_label }} @if($notice->is_expired) Expired @endif
{{-- Title --}}

{{ $notice->title }}

{{-- Meta --}}
@php $initial = strtoupper(substr($notice->postedBy->name ?? 'U', 0, 1)); $gradients = [ 'A' => 'from-primary-600 to-accent-500', 'B' => 'from-primary-600 to-accent-500', 'C' => 'from-primary-600 to-accent-500', 'D' => 'from-primary-600 to-accent-500', 'E' => 'from-success-500 to-success-600', 'F' => 'from-success-500 to-success-600', 'G' => 'from-success-500 to-success-600', 'H' => 'from-success-500 to-success-600', 'I' => 'from-violet-500 to-pink-500', 'J' => 'from-violet-500 to-pink-500', 'K' => 'from-violet-500 to-pink-500', 'L' => 'from-violet-500 to-pink-500', 'M' => 'from-warning-500 to-danger-500', 'N' => 'from-warning-500 to-danger-500', 'O' => 'from-warning-500 to-danger-500', 'P' => 'from-warning-500 to-danger-500', 'Q' => 'from-accent-500 to-indigo-500', 'R' => 'from-accent-500 to-indigo-500', 'S' => 'from-accent-500 to-indigo-500', 'T' => 'from-accent-500 to-indigo-500', 'U' => 'from-pink-500 to-violet-500', 'V' => 'from-pink-500 to-violet-500', 'W' => 'from-pink-500 to-violet-500', 'X' => 'from-pink-500 to-violet-500', 'Y' => 'from-pink-500 to-violet-500', 'Z' => 'from-pink-500 to-violet-500', ]; $gradient = $gradients[$initial] ?? 'from-primary-600 to-accent-500'; @endphp {{ $initial }} {{ $notice->postedBy->name ?? 'Unknown' }} · {{ $notice->published_at->format('d M Y, h:i A') }} @if($notice->expires_at) · {{ $notice->is_expired ? 'Expired' : 'Expires' }} {{ $notice->expires_at->format('d M Y, h:i A') }} @endif
{{-- Content --}}
{!! nl2br(e($notice->content)) !!}
{{-- Footer Actions --}} @if(auth()->user()->role === 'company_admin' || (auth()->user()->role === 'company_user' && $notice->posted_by === auth()->id()))
Back to Notices
@if(auth()->user()->role === 'company_admin')
@csrf
@endif Edit
@else @endif
{{-- Delete Confirmation Modal --}}
@endsection