navigation badge icon
Hi All,
Is it possible to add a icon to the navigation badge?
I want a icon insted of a number or text so it will show me if there is a timetracker active or not.
public static function getNavigationBadge(): ?string
{
if(static::getModel()::where('stopped_at', null)->wherenot('started_at',null)->count() > 0)
{
//return static::getModel()::where('stopped_at', null)->wherenot('started_at',null)->count();
return 'heroicon-m-clock';
}
return null;
}
Thanks for your help on this one!
Is it possible to add a icon to the navigation badge?
I want a icon insted of a number or text so it will show me if there is a timetracker active or not.
public static function getNavigationBadge(): ?string
{
if(static::getModel()::where('stopped_at', null)->wherenot('started_at',null)->count() > 0)
{
//return static::getModel()::where('stopped_at', null)->wherenot('started_at',null)->count();
return 'heroicon-m-clock';
}
return null;
}
Thanks for your help on this one!