comhon-project / custom-action
Laravel library that permits to create and customize actions in a very easy way.
Requires
- php: ^8.2
- comhon-project/model-resolver-contract: ^2.0
- comhon-project/template-renderer: ^1.2.2
- illuminate/contracts: ^10.0|^11.0
- spatie/laravel-package-tools: ^1.18.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.0|^8.1
- orchestra/testbench: ^8.0|^9.0
- phpunit/phpunit: ^10.5
README
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.