mycmdev / nova-modules

A Laravel Nova Tool helping modularize your application
MIT License
7 stars 6 forks source link

Error in ServiceProvider stub on non-windows machines #7

Open Kaylakaze opened 3 years ago

Kaylakaze commented 3 years ago

Line 105 of the ServiceProvider.stub file says: $namespace."\\Resources\\".Str::afterLast($resource, '\\') It should be: $namespace."\\Resources\\".Str::afterLast($resource, DIRECTORY_SEPARATOR)

(This is the sort of thing I could fix myself if we had stub location config.)