idea-php-laravel-plugin
idea-php-laravel-plugin copied to clipboard
Laravel Framework Plugin for PhpStorm / IntelliJ IDEA
When trying to call MyModel::find($id), there is no auto completion and PHPStorm does not detect find method on Model. Not much of a big deal, except with newcomers like me...
The plugin specifies "PHP/Route: Controller completion and goto", but for any route in our Laravel 5, PHPStorm still cannot find which file each Controller or its method refers to. I...
At version 2019.2 I can use autocomplete like this `app()->make(Class)->................;` but at version 2020.1 I can't use this Thank you
Find declaration function doesn't work for actions defined in `Route::post()` method. `Route::get()` works as intended though. PhpStorm 2020.1.3 Laravel Plugin 0.15.4 IDE Helper 2.8.1
With PhpStorm, after a while that I have not encrypted we lose the links of the web.php file. You can no longer click on it and the get / post...
I frequently use the 'Comment With Line Comment' command in Idea to turn single-line debugging statements on or off. For instance, pressing `ctrl`+`/`/ on this line: ```php $comment = 4;...
Autocomplete didn't show route name from `api.php`, It's show only route from `web.php`
Right now the following approaches support auto completion for translation: - `__(…)` - `trans(…)` - `app('translator')->get(…)` - when injecting `\Illuminate\Translation\Translator` directly, `->get(…)` also works The one thing which doesn't work...
If I create config file that contains array. ``` return [ 'test1' => 'this config was detect', 'test2' => [ 'this', 'config', 'was', 'not', 'detect', ], ]; ```
Please, add support when I focus on the name of the template in Controller method the ability to jump to it. Now it is implemented with blade