edulazaro
edulazaro

Eduardo

@edulazaro

Instruction at referenced memory could not be read.
20 Posts 239 Views
  • No matching results...
  • Searching...

/ 255

Poll Options

Pinned

Eduardo

@edulazaro

Just released Laractions, a package which allows to create actions and model actions, keeping them in an organised way. Actions can run both synchronously or asynchronously without the need to create additiona jobs.

You can do:

// Syncronous
$user->action('send_email')->run($subject, $content);

// Asyncronous
$user->action('send_email')->dispatch($subject, $content);


github.com/edulazaro/laractions

148

Presenting Wiretoast for Laravel and Livewire. Simple toast notifications ready to use out of the box.

Every time I start a new project I end up configuring the same things again, and toast messages are always one of them.

Wiretoast includes light and dark modes, seven positions, five message types such as success, warning or error, nine visual styles including the highly requested Claude website style theme, and optional progress bars.

Toasts can be triggered both from Livewire components and from JavaScript, making it easy to integrate into any workflow.

github.com/edulazaro/wiretoast

18

πŸš€ Laratext 2.0 is out

What's new:

πŸ‘‰ Drift detection by default: edit a source text, next scan retranslates it
πŸ‘‰ Claude translator with prompt caching
πŸ‘‰ --prune flag to clean up orphan keys

github.com/edulazaro/laratext


23

image

Just sharing Laraclaude, a Laravel toolkit for Claude Code.

β€’ Detect N+1 queries, unused columns, and orphan records
β€’ Consolidate migrations
β€’ Run security audits (XSS, SQLi, exposed secrets)
β€’ Optimize Livewire and convert components to Volt
β€’ Generate actions, CRUDs, and tests

πŸ‘‰ github.com/edulazaro/laraclaude

25

Eduardo

@edulazaro

image

Are AI skills making Laravel stubs obsolete?

2 votes Β· Poll expired

23

Eduardo

@edulazaro

Whenever I used existing drag-and-drop libraries with Livewire, I kept running into issues. The livewire-sortable package relies on Shopify Draggable, which is heavier and tends to cause quite a few problems.

So I built this package that uses SortableJS instead. It works well with wire:navigate, supports multiple containers, and preserves Livewire references correctly. Only 36KB.

Yes, it’s not a huge thing, but it solves a real problem.

πŸ‘‰ npm install wire-sortable

github.com/edulazaro/wire-sortable