plugin icon indicating copy to clipboard operation
plugin copied to clipboard

Laravel Idea plugin for PhpStorm

Results 311 plugin issues
Sort by recently updated
recently updated
newest added

### Feature Description Some methods highlight invalid arguments: ![image](https://user-images.githubusercontent.com/7202674/147875507-b5bae3fe-3c9d-49ad-b605-39314db6c1c2.png) It would be great if the route helpers would do the same if the route name does not exist. For example,...

### Bug description Hello, Im using custom view namespaces for each of my modules and i would love the click jump to view to work. I have already enabled `Simple...

### Bug description Plugin crashes ``` com.intellij.util.IncorrectOperationException: java.io.IOException: Cannot create directory '\\wsl$\Ubuntu-20.04\home\me\Sites\mysite\vendor\_laravel_idea' ``` ### Plugin version 4.4.5.213 ### Operating system Windows ### Steps to reproduce Create a site inside of...

### Feature Description The below make commands support --test and --pest: ``` php artisan make:command php artisan make:job php artisan make:listener php artisan make:mail php artisan make:model php artisan make:notification...

Laravel version: **6.20** Plugin version: **4.3.0.211** Both fields must be filled, otherwise the generator does not add the configuration entry in `AuthServiceProvider.php`. This is independent of the target directory settings....

will be fixed/implemented soon

Example routing definition: ```php Route::get('/foo', 'FooBarController@foo')->name('foo'); Route::post('/bar/{id}', 'FooBarController@bar')->name('bar'); ``` Scaffolding via _Show Context Actions_ menu action, on _action_ fragment: ```php

will be fixed/implemented soon

### Bug description Didn't see anything breaking, it happened because I updated the project from github while it was indexing ### Plugin version 4.4.4.213 ### Operating system MacOS ### Steps...

### Feature Description For example I have this method: public function sample_method() { $users = User::all(); return view('admin.users', compact('users')); } PHPStorm shows that the function is missing return type declaration....

### Bug description Hello, I'm not getting autocompletion on column names within a `whereHas` on a polymorphic relationship. The code works fine, but phpstorm is only trying to autocomplete columns...

### Bug description When generating a nova resource, on all related fields, the class referred to is to the model, instead of the resource. Code currently generated for a has...