Every @laravelphp MCP tutorial ends at a weather example.
What they skip: auth trade-offs, tool scoping, and the NeighborJack vulnerability hitting hundreds of exposed servers.
The production guide I wish existed 👇
Scout Bulk Actions by @mozexdev auto-discovers every model that uses the Searchable trait and lets you import, flush, or refresh all of them with a single command 🔍️ - https://t.co/ACWIQVAtWC
@YutoTanaka_AI_ Thanks a lot for giving it a try! Streaming is honestly the part I keep iterating on, so I'd genuinely love to read your insights once you publish them. If you hit any rough edges or have ideas on how to make it smoother, please send them my way. Always open to feedback or PRs.
Anthropic Laravel by @mozexdev gives you a Laravel-native way to talk to Claude – it's the Laravel wrapper for the community-maintained PHP SDK for the Anthropic API 💬 - https://t.co/buHufOk9Qr
A client shipped a one-comma tweak to their @AnthropicAI system prompt and doubled their Claude API bill overnight. Prompt caching's invalidation rules are stricter than the docs make obvious. The @laravelphp pattern that holds up in production 👇
Every @laravelphp cron in production needs an external heartbeat. Yours probably doesn't have one. @OhDearApp catches what Laravel can't: "schedule:run hasn't pinged in 3 minutes, something broke."
The 5 failures behind the pattern 👇
Your @laravelphp queued jobs sometimes fail because they run before your transaction commits. Your tests never catch this. Same process, same DB connection. Production? Separate workers, separate connections.
The config line that fixes it 👇
@enunomaduro Heads up for anyone running a modular Laravel app
The new time-balanced sharding needs a small tweak to work correctly (same situation as the original Shard plugin). I wrote up the fix here: https://t.co/dvcR5yKPVZ
Happy to PR upstream if there's interest @enunomaduro 🙌
just released pest v4.6.0 with time-balanced sharding
this was a long-time request from the @laravelphp cloud team; with around 15,000 tests, browser tests and other slow ones need to be spread evenly across all shards
fucking dope
@enunomaduro Heads up for anyone running a modular Laravel app
The new time-balanced sharding needs a small tweak to work correctly (same situation as the original Shard plugin). I wrote up the fix here: https://t.co/dvcR5yKPVZ
Happy to PR upstream if there's interest @enunomaduro 🙌
@enunomaduro Unfortunately since I am using a modular application, it doesn't work for me. I fixed Shard plugin for modular applications but for this new feature I have to work on it as well.