Enabale autocomplete for Laravel 4 in Netbeans

I would like to add autocomplete with documentation for Laravel 4 in Netbeans. I am trying to find and find this code ( https://github.com/ethaizone/laravel-netbeans-autocompletion ). Unfortunately, it does not work with Laravel 4.

Anyone have an idea or solution?

+6
source share
3 answers

Try https://github.com/barryvdh/laravel-ide-helper . It uses the artisan command to create an ide helper file

+11
source

Just download this _ ide_helper.php file and put it in the root directory of your project

+2
source

I created a folder inside programfiles / netbeans / php, then I saved a file that you can grab from the following URL. I updated the global PHP path to include the path to the above folder from Netbeans. The next time you create Laravel, you do not need to specify the path to the include file. Netbeans will support Laravel code completion.

download file from this page

0
source

Source: https://habr.com/ru/post/946673/


All Articles