多個模型:直接php artisan ide-helper:models
,當然也可以php artisan ide-helper:models -W
單個模型:這個不能按照github上的readme來,坑爹。必須指明具體的類全名:php artisan ide-helper:models "App\Models\User"
。
至於readme上寫的:
> php artisan ide-helper:models Post User
及
php artisan ide-helper:models --dir="path/to/models" --dir="app/src/Model"
我試了很多次都沒有成功,感覺或許是有BUG,在
vendor/barryvdh/laravel-ide-helper/src/Console/ModelsCommand.php
if (class_exists($name)) {
但也可能跟此包依賴的其他包的版本有關係吧。。。