@extends('layouts.influencer', ['title' => 'Notificação']) @section('content') @php $recipient = $recipient ?? $notification ?? $notificationRecipient ?? null; $message = $message ?? $recipient?->message; @endphp @if(! $recipient || ! $message)

Notificação não encontrada

Não foi possível carregar esta notificação.

Voltar
@else

{{ $message->title }}

Recebida em {{ optional($recipient->received_at)->format('d/m/Y H:i') }} @if($recipient->read_at) · Lida em {{ $recipient->read_at->format('d/m/Y H:i') }} @endif

Voltar
{{ method_exists($message->type, 'label') ? $message->type->label() : ucfirst((string) $message->type) }} Enviada em {{ optional($message->sent_at)->format('d/m/Y H:i') }}
{!! $message->body !!}
@if($message->attachments->isNotEmpty()) @endif
@endif @endsection