Working with Multiselect in my Template

<?php
// get the available options from the blueprint
$options = $page->blueprint()->field('category')['options'];
dump($options);

// when looping through the stored values, fetch the option with the key from the options array
foreach($page->category()->split(',') as $category) {
  echo $options[$category] ?? $category;

}