How can i remove this default label text in resource
How can i remove this default label text in resource
4 Replies
which one? breadcrumb (employees > create) or title (create employee)?
If you need change text "Create Employee", you should use this:
use Illuminate\Contracts\Support\Htmlable;
public function getTitle(): string | Htmlable { return __('Create new employee'); } In mi opinion it's the best option, because you can use traductions too.
public function getTitle(): string | Htmlable { return __('Create new employee'); } In mi opinion it's the best option, because you can use traductions too.
Create new employee
i want completely remove it
Then return empty like
return ''
in getTitle()