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
The GeneratorPrefixes class for merging namespace prefix is using Str::title it should be Str::studly.
GeneratorPrefixes
Str::title
Str::studly
The route prefix for merging is using Str::camel, IMHO it should be Str::kebab - I would expect semantic URLs to be in kebab case not in camel case.
Str::camel
Str::kebab
The view prefix for merging is using Str::snake it should be Str::kebab in line with Laravel convention I would expect these to be in kebab case also.
Str::snake
I'm happy to submit a PR as I have written a proof of concept to verify the changes do as would be expected.
The text was updated successfully, but these errors were encountered:
PR here - #1070
Sorry, something went wrong.
No branches or pull requests
The
GeneratorPrefixes
class for merging namespace prefix is usingStr::title
it should beStr::studly
.The route prefix for merging is using
Str::camel
, IMHO it should beStr::kebab
- I would expect semantic URLs to be in kebab case not in camel case.The view prefix for merging is using
Str::snake
it should beStr::kebab
in line with Laravel convention I would expect these to be in kebab case also.I'm happy to submit a PR as I have written a proof of concept to verify the changes do as would be expected.
The text was updated successfully, but these errors were encountered: