Notifications on frontend

Hello there!

I would like to show a simple notification on all of my frontend dasboards.
It has to look like this:

I am using automations to create a persistent.notification:

action: persistent_notification.create
data:
notification_id: lamp
message: “Test: Dressoir lamp schakelt.”

I get a notificton in my menu on the left but i want to display it so i am using this code:

  - type: custom:auto-entities
    card:
      type: vertical-stack
      title: Notifications in Vertical Stack of Cards
    card_param: cards
    filter:
      include:
        - entity_id: persistent_notification.lamp
          options:
            type: entity
            attribute: message
    sort:
      method: last_triggered

The problem is that it is not showing anything.
What Am i doing wrong?

Many Thanks!