Make tags clickable

I have these tags that I collect trough pluck method:

  <?php $tags = $page->children()->listed()->pluck('tags', ',', true); foreach ($tags as $tag): ?>
      <a href=".........." class="bg-brand-neutral-300 text-brand-neutral-900 rounded-2xl py-2 px-4 flex box-border text-base"><?= $tag ?></a>
  <?php endforeach ?>

How do I make the anchors clickable so you go to that specific tag selected?

For example (http://localhost:8000/verhalen/tag:Test)

1 Like

Thanx so much got it working! :slight_smile: