comhon-project/custom-action

Laravel library that permits to create and customize actions in a very easy way.

v5.0.1 2025-04-01 18:36 UTC

This package is auto-updated.

Last update: 2025-04-04 00:28:57 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Custom Action is a Laravel library that allows you to create and customize actions easily. This library provides a ready-to-use API for action customization, along with built-in interfaces and traits to help you implement actions as simply as possible.

For example, suppose your application is a CRM. Your back-office users want to customize the emails sent to final clients. With Custom Action, you only need to implement the "send email" action in just a few lines of code. Back-office users will then be able to customize the action (email subject, content, recipients, and sender) via the API without requiring any additional development!

This library can be used for any type of action that requires customization.

Installation

You can install the package via composer:

composer require comhon-project/custom-action

You can publish and run the migrations with:

php artisan vendor:publish --tag="custom-action-migrations"
php artisan migrate

You can publish the config file with:

php artisan vendor:publish --tag="custom-action-config"

Documentation

To learn more about Custom Action, please the wiki.

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

The MIT License (MIT). Please see License File for more information.