We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Great work with the package.
Currently the Nova tool label can be customised with config('novapage.label').
config('novapage.label')
However, other strings in the tool are hard-coded and cannot be updated.
Most of these could be run through translations to allow this, such as changing Whitecube\NovaPage\Pages\Resource::singularLabel()
Whitecube\NovaPage\Pages\Resource::singularLabel()
/** * Get the displayable singular label of the resource. * * @return string */ public static function singularLabel() { return 'nova-page'; }
/** * Get the displayable singular label of the resource. * * @return string */ public static function singularLabel() { return __('nova-page'); }
The text was updated successfully, but these errors were encountered:
Hi @alex-osborn,
Yep, you're right. We'll update those soon :)
Sorry, something went wrong.
No branches or pull requests
Great work with the package.
Currently the Nova tool label can be customised with
config('novapage.label')
.However, other strings in the tool are hard-coded and cannot be updated.
Most of these could be run through translations to allow this, such as changing
Whitecube\NovaPage\Pages\Resource::singularLabel()
The text was updated successfully, but these errors were encountered: