// for simple component
php artisan make:livewire componentName
// for Inline components
php artisan make:livewire componentName --inline
// If you wish to create components within sub-folders, you can use the following
php artisan make:livewire PostShow
php artisan make:livewire Post/Show
php artisan make:livewire post.show
sudo php artisan make:livewire ShowPosts
php artisan make:livewire ComponentName
php artisan make:livewire ShowPosts
php artisan make:livewire counter