edulazaro
edulazaro

Eduardo

@edulazaro

Instruction at referenced memory could not be read.

12 Posts 173 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

140

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

54

🚀 Introducing Larallow, a Laravel permissions/roles package. Here's what it brings:

✅ Scoped Roles and Permissions: per project, team…
✅ Native support for PHP Enums for permissions
✅ Chainable multi-permission and role checks
✅ Flexible actor types and scopes
✅ Translation support built-in
✅ Supports both direct permissions and role-based checks
✅ Permission hierarchy

If you're working on a multi-tenant app, localized admin panel, or anything that demands fine-grained access control, give Larallow a try!

Beta version. First stable release scheduled for June 7th.

github.com/edulazaro/larallow

69

When you define texts in Laravel, you either define the key or the string content, and neither option is perfect.

With the first, it’s hard to know what’s actually there, and with the second, you risk messing up your translation keys by changing even a single character.

So, I’ve just published Laratext, a Laravel package to easily manage and automate translations in your Laravel projects.

✅ Use simple helpers like text('key', 'Default value') or Blade directives like @text('key', 'Default')
✅ Auto-scan your codebase and extract translation keys
✅ Automatically translate missing keys using OpenAI or Google Translate
✅ Easily extend it with your own custom translators

Check it out here 👉
github.com/edulazaro/laratext

81

Just released Laralang, a simple and lightweight localization package for Laravel.

I know what you might be thinking: "Another one?" 😅 There are plenty out there. But after trying several over the years, I found most of them either too complex or requiring significant changes to routes or code. Simple API, minimal configuration, support for Ziggy and near-zero performance impact.

With Laralang, you can easily do:

* route('es.whatever'): Link to whatever route in the es (Spanish) locale.
* route('whatever'): Link to whatever route in the current locale.

github.com/edulazaro/laralang

image

58