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

### Bug description I can't use the model-specific collection as a return type. That's the warning from PhpStorm: ![image](https://user-images.githubusercontent.com/359076/196550907-90429339-e618-43ad-b64d-a3f9be191337.png) The same result was for other builder finishers. I expected to...

I have the following structure: `routes/web.php` ```php foreach (File::allFiles(__DIR__.'/web') as $file) { require $file->getPathname(); } ``` And some routing files separated per module: ``` routes/web/moduleA.php routes/web/moduleB.php ... ``` Some module...

will be fixed/implemented soon

### Feature Description One of the most useful autocompletions for me is the database column autocompletion on Eloquent models and in factories. One useful aspect where this autocompletion is still...

### Feature Description Hi, I was wondering if possible to add custom config path in ide.json? we have many config in different path and `ide.json` does seems currently not supported...

### Feature Description If I use the Facade to register a custom gate, it will be suggested in the gate methods ```php Gate::define('ability', fn() => true); // $user->can('ability') is suggested...

implemented - wait next release

### Feature Description Hi, When using components from https://livewire-wireui.com they are not recognised/completed. Could these be added? Cheers,

implemented - wait next release

### Bug description Hello, i have multi level Route group and i use as to define the name so if i add one more group inside it then use resource...

implemented - wait next release

### Bug description Some third-party libraries allow setting custom table names, for example: https://github.com/outl1ne/nova-menu-builder/blob/main/src/Models/Menu.php#L15 I extended menu and menu item classes and unfortunately generating helper file ends with 2 warnings:...

will be fixed/implemented soon

### Bug description If I use the File and Code Template in PHPStorm and want to auto generate code with the Laravel Idea plugin, the month is wrong. I use...

implemented - wait next release

### Feature Description Validation only works on request itself, any other validations won't have autocompletion. There are few examples in screenshot attached, I guess it's kinda enough to make return...