Closed philipnjuguna66 closed 8 months ago
hmm the trouble is it's not strictly set that way, anyone can change the paths from upper to lowercase as they want. Seems to work fine in either case.
I don't think this is needed.
Here I have 2 modules one with Resources and one with resources both work without any changes
Blog
Docs
@philipnjuguna66
while php artisan vendor:publish --tag=modules-livewire-config
have a look in Laravel-Root1 '/config/modules-livewire.php'
` /* | -------------------------------------------------------------------------- | View Path |
---|---|---|
*/
'view' => 'Resources/views/livewire',
` change to
` /* | -------------------------------------------------------------------------- | View Path |
---|---|---|
Lover-Cased :)) |
*/
'view' => 'resources/views/livewire',
`
That should work
In Laravel modules version 10, the resource paths are in lowercase. Therefore, this pull request adjusts the resource paths from uppercase to lowercase to align with the convention used in version 10 of Laravel modules.