Inbox - Removed Projects Notifications @if($data['unread_count'] > 0) {{ $data['unread_count'] }} @endif


@if($data['messages']->count() > 0) @foreach($data['messages'] as $message)
Project: @if($message->project_id) {{ $message->project_name }} (ID: {{ $message->project_id }}) @else {{ $message->project_name ?? 'Unknown Project' }} @endif
@php $createdAt = $message->created_at; if (is_string($createdAt)) { $createdAt = \Carbon\Carbon::parse($createdAt); } elseif (!$createdAt instanceof \Carbon\Carbon) { $createdAt = $createdAt ? \Carbon\Carbon::parse($createdAt) : null; } @endphp @if($createdAt) {{ $createdAt->format('d.m.Y H:i:s') }} @else N/A @endif

{{ $message->message }}

@if($message->infringing_links && count($message->infringing_links) > 0) @endif
@if(!$message->is_read) @endif
@endforeach
@else
No messages in inbox.
@endif