notification.blade.php (444B)
1 <li><article> 2 @component('event_info', [ 3 'account' => $notification['account'], 4 'created_at' => $notification['created_at'], 5 'type' => $notification['type'], 6 'visibility' => null 7 ]) 8 @endcomponent 9 10 @if ($notification['status'] ?? null !== null) 11 <ul> 12 @component('status', ['status' => $notification['status']]) 13 @endcomponent 14 </ul> 15 @endif 16 </article></li>