Skip to content

Instantly share code, notes, and snippets.

@firstfu
Last active May 10, 2018 02:18
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save firstfu/323e5615ec991184892ac104e4cac828 to your computer and use it in GitHub Desktop.
Save firstfu/323e5615ec991184892ac104e4cac828 to your computer and use it in GitHub Desktop.
PHPStorm要安裝plugin => Laravel Plugin + Symfony Plugin
##step1-在專案下使用composer安裝,此法必須配合PHPStorm使用才可以
composer require barryvdh/laravel-ide-helper
##step2-在config/app.php加入服務提供者
'providers' => array(
// ...
'Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider', // Laravel IDE helper
),
##step3-產生_de_helper.php文件(PHPStorm依此文件做Autocomplete)
php artisan ide-helper:generate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment