The creator of Claude Code teaches more about vibe-coding in 30 minutes than most tutorials do in hours.
Save this — it'll change how you build forever.
@scheel_dev We have some ideas, but not many. Some minimal project information, a few automatic checks, like cached config/routes, etc. If you have any ideas, please share.
@phpstorm@laravel_idea Appreciate the MCP server, but found it very hard to make it available in Junie. And even after making it work, Junie still uses cli commands (find/grep/mkdir) when asked to refactor a namespace. I had to explicitly tell it to use the mcp tools.
Great improvement, but still...
PhpStorm 2026.1 is out! 🚀 This release brings improved MCP support, new Laravel features, improvements for generics, and more.
Read all about it here: jb.gg/3ri3q5
@enunomaduro@laravelphp Kinda useless. Instead, forcing the addition of a return parameter if there is @return in the comment, it would be more useful; comments are good for AI.
honestly thinking about developing this @laravelphp pint rule (as opt-in!) that just removes every single useless comment from your codebase.. it would obviously still keep the typing information!
what do you think? yes or yes? 🧼
Laravel tip:
When your pivot table has its own data, create a custom Pivot model.
You get casts (enums, decimals), named relationships, and can use it as a `HasMany`.
Perfect for binding to Filament Repeaters or any UI that needs the pivot as a first-class model.
@laravelnews@paulredmond I love seeing new packages being promoted, but when that package looks almost identical to another popular community package, it would be nice if you could highlight the differences. lab404/laravel-impersonate, has been actively maintained since 2017 and has 14M downloads.
Have I lost my mind or is this ok??
FYI: I did check the XML parser instead of HTML parser, it has a whole bunch of HTML-specific things missing that we also need, so that's not really an option…
It would be awesome if @laravelnews allowed up/downvoting community links. Most if not all links to "What's new in L12" posts are AI generated and full of hallucinations.
@enunomaduro is it possible in Pest to add custom modifiers to Arch expectations? Like manually adding excludeCallbacks? I'm new to Pest so I may be missing something obvious.
@XanYangZen@laravel_idea@diogogpinto It's built in. Imports are added automatically when you start typing a class name and then select the class in the completion suggestions. Or when you paste code, it'll ask you if you want the imports added.
Made the leap from VSCode to PHPStorm today!
Loving the customization and how it bettered my relationship with PHP 😍
But seriously, if I had a dollar for every time I’ve had to tweak the keymaps to match VSCode... I could probably retire today.
@enunomaduro There's github.com/shufo/prettier… which allows wrapping only after a certain number of attributes is present on an element.
It also does a bunch of other nice stuff, like understand directives, format alpine etc.
I assume it would work for vanilla html as well as blade
Prettier experts: Is it possible to prevent Prettier from wrapping HTML attributes if the element contains only one attribute?
Note: Without touching on the "printWidth" option.