@extends('layouts.app') @section('content')
{{ __('Important updates about your account and billing.') }}
| {{ __('Title') }} | {{ __('Message') }} | {{ __('Status') }} | {{ __('Date') }} | {{ __('Link') }} |
|---|---|---|---|---|
| {{ __($notification->title) }} | {{ __($notification->body) }} | @if ($notification->is_read) {{ __('Read') }} @else {{ __('Unread') }} @endif | {{ $notification->created_at->translatedFormat('M d, Y H:i') }} |
@if ($notification->link)
{{ __('Open') }}
@endif
@if (!$notification->is_read)
@endif
@if (!$notification->link && $notification->is_read)
—
@endif
|
| {{ __('No notifications.') }} | ||||