livewire / volt

Volt is an elegantly crafted functional API for Livewire.
https://livewire.laravel.com/docs/volt
MIT License
312 stars 19 forks source link

Artisan command volt file generator not creating folders. #83

Closed joydeep-bhowmik closed 7 months ago

joydeep-bhowmik commented 7 months ago

Volt Version

1.6

Laravel Version

10.10

PHP Version

8.2.4

Database Driver & Version

No response

Description

php artisan make:volt folder.counter

generated livewire\folder.counter.blade.php instead of creating livewire\folder\counter.php

Steps To Reproduce

run this command after installing livewire-volt php artisan make:volt folder.counter

nunomaduro commented 7 months ago

We don't support the (dot) syntax in this command. Please use a directory separator instead:

php artisan make:volt folder/counter
joydeep-bhowmik commented 7 months ago

We don't support the (dot) syntax in this command. Please use a directory separator instead:

php artisan make:volt folder/counter

Ok thanks for your answer