plugin
plugin copied to clipboard
Laravel Idea plugin for PhpStorm
### Bug description I can't use the model-specific collection as a return type. That's the warning from PhpStorm:  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...
### 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...
### Feature Description Hi, When using components from https://livewire-wireui.com they are not recognised/completed. Could these be added? Cheers,
### 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...
### 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:...
### 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...
### 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...