idea-php-laravel-plugin icon indicating copy to clipboard operation
idea-php-laravel-plugin copied to clipboard

Laravel Framework Plugin for PhpStorm / IntelliJ IDEA

Results 100 idea-php-laravel-plugin issues
Sort by recently updated
recently updated
newest added

It would be nice if the plugin could do autocompletion for config files inside subdirectories as well.

You have "Note You must install and use the Laravel IDE Helper in order for PhpStorm to know how to find the Laravel classes." PhpStorm developers already fix autocompletition for...

Hi, Great plugin, many thanks! I would like to help improving it. Is there a way I can use my local fork (my repo) on PhpStorm to test my changes/contributions?

While this example is working as intended: ``` Route::group(['as' => 'admin::'], function() { Route::get('home', function() {})->name('home'); }); ``` Using the new fluid Syntax does not result in correct autocompletion: ```...

Hi, It would be cool if plugin would recognise all aliases from config/app.php file so when we use it we can CMD+click to go to class definition. Kind regards.

When using Route::resource() autocompletion for route() is not working.

Hello, I use DingoAPI (https://github.com/dingo/api) into laravel 5.3, /routes/api.php : `DingoRoute::get('my/{name}', [ 'as' => 'my.name', 'uses' => 'App\Http\Controllers\MyController@showByName', ]);` PHPStome Ctrl+B (Navigate->goto Declaration) on "showByName" say : "Cannot find declaration...

If we're grouping routes and using 'as' and then give a name to a route, autocompletion not working. For example we have this route. ``` php Route::group(['as' => 'admin.'], function...

`Worker exited due to exception java.lang.NullPointerException at de.espend.idea.laravel.controller.ControllerReferences$1.getUsesArrayMethodParameter(ControllerReferences.java:130) at de.espend.idea.laravel.controller.ControllerReferences$1.getProvider(ControllerReferences.java:117) at fr.adrienbrault.idea.symfony2plugin.codeInsight.navigation.GotoHandler.getGotoDeclarationTargets(GotoHandler.java:31) at com.intellij.codeInsight.navigation.actions.GotoDeclarationAction.findTargetElementsNoVS(GotoDeclarationAction.java:292) at com.intellij.codeInsight.navigation.CtrlMouseHandler.a(CtrlMouseHandler.java:525) at com.intellij.codeInsight.navigation.CtrlMouseHandler.a(CtrlMouseHandler.java:504) at com.intellij.codeInsight.navigation.CtrlMouseHandler.access$2200(CtrlMouseHandler.java:105) at com.intellij.codeInsight.navigation.CtrlMouseHandler$TooltipProvider.b(CtrlMouseHandler.java:836) at com.intellij.codeInsight.navigation.CtrlMouseHandler$TooltipProvider.access$2900(CtrlMouseHandler.java:776) at com.intellij.codeInsight.navigation.CtrlMouseHandler$TooltipProvider$1.performInReadAction(CtrlMouseHandler.java:821) at com.intellij.openapi.progress.util.ReadTask$1.compute(ReadTask.java:70) at com.intellij.openapi.progress.util.ReadTask$1.compute(ReadTask.java:67)...

Hi, using laravel modules via [bundle](https://github.com/nWidart/laravel-modules) or defining custom controllers (not in `\\App\\Http\\Controllers\\` path) doesn't work neither autocomplete, neither navigation (when defining namespace and after that controller). It still autocompletes...