edulazaro
edulazaro

Eduardo

@edulazaro

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

/ 255

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

152

When working with personal data, anonymizing data before sending it to a third-party agent such as ChatGPT or Claude is essential.

If you use Laravel, you’re in luck, because I’ve created this package. Laranon allows you to anonymize names, identity documents, bank account numbers, addresses, and more. It does this by replacing real values with anonymous ones that prevent individuals from being identified. On the way back, the data is normalized again.

👉 github.com/edulazaro/laranon

If you like it, remember to leave it a star ✨

image

26

Just published Larascraper 2, as simple but powerful scraper por Laravel:

👉 Browser actions: click, type, scroll, wait...
👉 Conditional flow: when() / repeatUntil(), a query builder for the page
👉 Clean ScraperResponse (success, status, data, file)
👉 File & PDF downloads with FileScraper
👉 Simple captcha solving (OCR)

github.com/edulazaro/larascraper
image

38

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

21

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

28