laravel的ide-helper常用artisan命令

php artisan ide-helper:models -D="/app/Models" -W -R

最新版默认scan目录已经是"/app/Models"了,所以可以忽略-D参数

php artisan ide-helper:models -W -R
php artisan make:model Models/Spitslot -m

m参数可以生成对应的migrations,表名自动帮我加个s

php artisan make:model LessonLog --no-migration

你可能感兴趣的:(laravel的ide-helper常用artisan命令)