更好的IDE代码提示:laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper 安装 composer require --dev barryvdh/laravel-ide-helper 设置服务提供者 config/app.php: Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class, 5.5及以上版本不需要设置 设置只在开发环境中加载 app/Providers/AppServiceProvider.php: public function register() { if ($this->app->environment() !== 'production') { $this->app->register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class); } // ... } 设置自动更新 conposer.json: "scripts":{ "post-update-cmd": [ "Illuminate\\...