I am using FilamentPHP. I have a page where I override the page title, but I want to add an icon of a star next to the title based on an attribute of my model. Below is a poor man’s version with just the word star, but not the icon heroicon-o-star.
public function getTitle(): string | Htmlable
{
return $this->record->name . ($this->record->is_favorite ? ' (STAR)' : '');
}