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

for some time that when I try to select a route Laravel by Ctrl+click... php storm show: always "Cannot find declaration to go to". before it always worked, now it...

it is not working ava.lang.Throwable: '#LineMarkerInfo(T, TextRange, Icon, int, Function, GutterIconNavigationHandler, Alignment)' is deprecated and going to be removed soon. Please use `LineMarkerInfo(T, TextRange, Icon, Function, GutterIconNavigationHandler, Alignment, Supplier)` instead...

It seems that I had created relevant API in PhpStorm a year ago. Here is a sample usage...

Plugin Laravel (0.15.4) return this error in Blade file in PHPStorm (2021.3): ``` java.lang.Throwable: '#LineMarkerInfo(T, TextRange, Icon, int, Function, GutterIconNavigationHandler, Alignment)' is deprecated and going to be removed soon. Please...

As brought up [here](https://github.com/barryvdh/laravel-ide-helper/issues/464) on the ide-helper's repository, using the 'goto' declaration on facades goes to the ide_helper.php where it is declared, which would be expected. It would be nice,...

The models and the methods are not showing in suggestions.

I was wondering if would be possible generate PHPDoc block properties for model classes based on respective database table columns. Example: ``` /** * Class User * * @property integer...

For example i have route service provider: ```php protected function mapApiRoutes() { Route::middleware('api') ->namespace($this->namespace . '\Api') ->group(base_path('routes/api.php')); } ``` And i have route group: ``` Route::group([ 'namespace' => 'Mirrors', 'prefix'...

hi, i was wondering why we don't have yet a template laravel based for a new project on PHP storm, it will be a good feature and very welcome ![D4TfOl8WAAEAosI](https://user-images.githubusercontent.com/6185157/56378162-91e94d80-61e2-11e9-9b54-b1d50702befb.png)

I have a grouped routes in my `web.php` file. I use Phpstorm and used laravel plugin along with laravel-ide-helper. The issue arises when I want to navigate to the `controller...