Download the PHP package patienceman/custom-handler without Composer
On this page you can find all versions of the php package patienceman/custom-handler. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download patienceman/custom-handler
More information about patienceman/custom-handler
Files in patienceman/custom-handler
Package custom-handler
Short Description Provide a convenient way creating single action handlers. The idea of a action handler is a single action controller that means a unique class handles each action
License MIT
Informations about the package custom-handler
CustomHandler | Patienceman
Provide a convenient way creating single action handlers. The idea of a action handler is a single action controller that means a unique class handles each action
Installation
Install the package doesn't require much requirement except to use the following command in the laravel terminal, and you're good to go.
Usage
To start working with handler, u need to run command :tada: in your custom directories:
so it will create the filter file for u, Just in
So you may want even to specify the custom path for your Handler, Just relax and add it in front of your Handler name. Let's take again our current example.
So far so good, Let see how you can your handlers anywhere in controller or services or ...:
But don't worry, you chain many handlers as you want, what you need to do is keep add , let see it in action:
And now once your controller get execution, all your handler will run.
Exchanges of data
There might a time you need to store and exchange tou data throughout your handlers, This package provide convinient way to do so, by just use to collect data and to get collected data, let take example:
In our :
That look to clear 🎉, so Let see how you can call the collected data anywhere your want, for example in our class:
🚨 You've seen where we are using function, and this is coming from Laravel collection, you can read more about it to their website: Laravel collection avalibale method for more about getting and filtering data.
There is also another way to get collected data, for instance when you're outside handler, and to apply this you use same functionality as after your handler, take a look:
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.