2018-10-08 01:51:22 +01:00
|
|
|
<li><article>
|
2018-08-26 21:37:55 +01:00
|
|
|
@component('event_info', [
|
|
|
|
'account' => $notification['account'],
|
|
|
|
'created_at' => $notification['created_at'],
|
2018-10-08 14:43:38 +01:00
|
|
|
'type' => $notification['type'],
|
|
|
|
'visibility' => null
|
2018-08-26 21:37:55 +01:00
|
|
|
])
|
2018-08-26 01:29:36 +01:00
|
|
|
@endcomponent
|
|
|
|
|
|
|
|
@if ($notification['status'] ?? null !== null)
|
2018-10-08 03:33:41 +01:00
|
|
|
<ul>
|
|
|
|
@component('status', ['status' => $notification['status']])
|
|
|
|
@endcomponent
|
|
|
|
</ul>
|
2018-08-26 01:29:36 +01:00
|
|
|
@endif
|
2018-10-08 01:51:22 +01:00
|
|
|
</article></li>
|