edulazaro
edulazaro

Eduardo

@edulazaro

Instruction at referenced memory could not be read.

17 Posts 207 Views

  • No matching results...
  • Searching...

/ 255

Poll Options

Pinned

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

145

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

18

image

Are AI skills making Laravel stubs obsolete?

2 votes · Poll expired

19

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

1

84

Larallow 1.1 released with new query methods and a bunch of fixes.

These scope methods check both direct and roles permissions as well as implied permissions.

image

github.com/edulazaro/larallow

57