Sophy
Sophy

Reputation: 9285

Enabale auto-complete for Laravel 4 in Netbeans

I would like to add auto-complete with documentation for Laravel 4 in Netbeans. I try to search and found this code(https://github.com/ethaizone/laravel-netbeans-autocompletion). Unfortunately, it doesn't work with Laravel 4.

Anyone have any idea or solution?

Upvotes: 6

Views: 13526

Answers (3)

newday
newday

Reputation: 3878

I created a folder inside programfiles/netbeans/php then I saved the file which u can grab from following url. I updated the PHP global include path to above folder from Netbeans. Next time when you create a Laravel you don't need to set the include file path. Netbeans will support Laravel code completion.

download the file from this page

Upvotes: 0

Tho
Tho

Reputation: 25100

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

Upvotes: 2

kr4Y
kr4Y

Reputation: 351

Try this https://github.com/barryvdh/laravel-ide-helper. It use artisan command to generate ide helper file

Upvotes: 11

Related Questions