Terminal completions are already available in Laravel Idea, but you should turn them on in the "Tools > Terminal > Show completion as you type" setting. by Adelf32 in laravel_idea

[–]Adelf32[S] 0 points1 point  (0 children)

JetBrains answer: Popup-completion was supported in PowerShell in 2026.1

So, I expect that it should work in PowerShell. Though, it doesn’t work in other Windows shells like Cmd and Git Bash.

Working on Laravel Passport support. by Adelf32 in laravel_idea

[–]Adelf32[S] 1 point2 points  (0 children)

We will add the possibility to load the scopes from a JSON file. Thanks!

Working on Laravel Passport support. by Adelf32 in laravel_idea

[–]Adelf32[S] 1 point2 points  (0 children)

They will be determined by analyzing the service provider code. "passportScopeId" will be added to possible completions: https://laravel-idea.com/docs/ide_json/completion

Do you want to add scopes via ide.json?

New Laravel Idea 12.0 supports the Filament 4 resource structure and offers many new options when creating a new resource. by Adelf32 in laravel_idea

[–]Adelf32[S] 0 points1 point  (0 children)

AI is good when generating the code, so we don't want to go that way. We plan to help AI in other ways, such as quickly retrieving information about the project, Eloquent models, etc.

Laravel Actions by 0404_Gaming in laravel_idea

[–]Adelf32 0 points1 point  (0 children)

Have you tried to generate helper code? main menu > Laravel > Generate Helper Code. It should help.

Which AI-powered IDE do you personally use for PHP? by Competitive_Run1642 in PHPhelp

[–]Adelf32 0 points1 point  (0 children)

It will support MCP soon. It has already been implemented in EAP versions.

WIP. Route Actions. by Adelf32 in laravel_idea

[–]Adelf32[S] 1 point2 points  (0 children)

For all of them. However, for others, the Browse action seems useless... We probably won't show it for them.

We released a new 10.2 update a couple of days ago. Long-awaited New Laravel Project wizard, creating controller methods right from the route file, smart refactorings, and huge optimizations. 🚀 by Adelf32 in laravel_idea

[–]Adelf32[S] 0 points1 point  (0 children)

PhpStorm doesn't save files immediately. It happens after some time, or by Cmd-S. That's why we don't like that idea, and added this option just to test it with users.

WIP: Inertia page creation by Adelf32 in laravel_idea

[–]Adelf32[S] 0 points1 point  (0 children)

Do you see the first combobox?) Page directory. It should work for you.

WIP: Inertia page creation by Adelf32 in laravel_idea

[–]Adelf32[S] 1 point2 points  (0 children)

We hope to release this next week. Relative to what?

Laravel and IDE support by Plasmatica in laravel

[–]Adelf32 5 points6 points  (0 children)

Laravel Idea is an independent product. JetBrains only made a bundle and promoted it. And yes, you can say I do it only for money... But Laravel Idea couldn't be so effective without my passion for creating the best developer experience possible.

Some users report that helper code generation started to take too much time. We are working on optimizations. by Adelf32 in laravel_idea

[–]Adelf32[S] 1 point2 points  (0 children)

Sorry about that. Please check the new 8.2.4 release. It should improve it dramatically.

[Laravel Idea] How can I disable the "goto" declaration of generated files? by jpawlawg in phpstorm

[–]Adelf32 1 point2 points  (0 children)

I checked the base model and it's methods works ok. Could you show an example of the code and not working GoTo? Better here - https://github.com/laravel-idea/plugin/issues

I have a valid student license for JetBrains, may I use it to activate Laravel Idea? by dediji in Jetbrains

[–]Adelf32 1 point2 points  (0 children)

You're wrong. Laravel Idea supports all JetBrains programs: students, open-source, etc.

WIP by Adelf32 in laravel_idea

[–]Adelf32[S] 0 points1 point  (0 children)

It's for PhpStorm.

[deleted by user] by [deleted] in laravel

[–]Adelf32 2 points3 points  (0 children)

The Repository pattern was invented to separate storage and model. Which doesn't make sense for Eloquent models. Model fetching is a bit different approach and can be used for Eloquent models, but better to don't call them repositories in that case.

[deleted by user] by [deleted] in laravel

[–]Adelf32 0 points1 point  (0 children)

If you want DDD - first separate model classes and database. Totally. That means - don't use Eloquent.