Disable Resource Title

How can I disable or hide a Resources Page Title?
On a Page I just do this:

public function getTitle(): string | Htmlable
{
return false;
}

But this don't work for my Resource Pages.
Solution
public function getTitle() : string
{
return '';
}

this works now, thx
Was this page helpful?