Badge count on relation manager tabs

Hi all, is it possible to get a count of all the records in the relation manager tab badge?
No description
Solution:
in the relation manager ```php public static function getBadge(Model $ownerRecord, string $pageClass): ?string {...
Jump to solution
2 Replies
Solution
toeknee
toeknee5d ago
in the relation manager
public static function getBadge(Model $ownerRecord, string $pageClass): ?string
{
return $ownerRecord->trips()->count();
}
public static function getBadge(Model $ownerRecord, string $pageClass): ?string
{
return $ownerRecord->trips()->count();
}
pathogen
pathogenOP5d ago
Thanks @toeknee, bang on! Much appreciated.

Did you find this page helpful?