Notifications @if (notifications.length > 0) {
}
@if (notifications.length === 0) {
notifications_none

No notifications

} @else { @for (notification of notifications.slice(0, 5); track notification.id) {
{{ getNotificationIcon(notification.type) }}

{{ notification.title }}

{{ notification.message }}

{{ formatTime(notification.timestamp) }}

@if (!$last) { } } @if (notifications.length > 5) {
{{ notifications.length - 5 }} more notifications...
} }